Fix sorting and doxygen
[alexxy/gromacs.git] / src / gromacs / mdlib / domdec.cpp
index 6c182cc12dc01a2f3a68916509f876bf713161b1..074193e49b589b56592c898ab724a46d35dcff54 100644 (file)
@@ -39,8 +39,6 @@
 
 #include "config.h"
 
-#include <algorithm>
-
 #include <assert.h>
 #include <math.h>
 #include <stdio.h>
@@ -48,6 +46,8 @@
 #include <string.h>
 #include <time.h>
 
+#include <algorithm>
+
 #include "gromacs/bonded/bonded.h"
 #include "gromacs/fileio/gmxfio.h"
 #include "gromacs/fileio/pdbio.h"
@@ -787,7 +787,7 @@ void dd_move_f(gmx_domdec_t *dd, rvec f[], rvec *fshift)
         /* Only forces in domains near the PBC boundaries need to
            consider PBC in the treatment of fshift */
         bShiftForcesNeedPbc   = (dd->ci[dd->dim[d]] == 0);
-        bScrew = (bShiftForcesNeedPbc && dd->bScrewPBC && dd->dim[d] == XX);
+        bScrew                = (bShiftForcesNeedPbc && dd->bScrewPBC && dd->dim[d] == XX);
         if (fshift == NULL && !bScrew)
         {
             bShiftForcesNeedPbc = FALSE;