Apply clang-format to source tree
[alexxy/gromacs.git] / src / gromacs / ewald / pme_solve.h
index ed6457dcdd8691c09474706537f871a5a66a0933..bcf33c740d32ede383f30b3738a74a0158843a39 100644 (file)
@@ -49,32 +49,33 @@ struct PmeOutput;
  * this function. Upon return it will point at
  * an array of work structures.
  */
-void pme_init_all_work(struct pme_solve_work_t **work, int nthread, int nkx);
+void pme_init_all_work(struct pme_solve_work_t** work, int nthread, int nkx);
 
 /*! \brief Frees array of work structures
  *
  * Frees work and sets it to NULL. */
-void pme_free_all_work(struct pme_solve_work_t **work, int nthread);
+void pme_free_all_work(struct pme_solve_work_t** work, int nthread);
 
 /*! \brief Get energy and virial for electrostatics
  *
  * Note that work is an array of work structures
  */
-void get_pme_ener_vir_q(pme_solve_work_t *work, int nthread, PmeOutput *output);
+void get_pme_ener_vir_q(pme_solve_work_t* work, int nthread, PmeOutput* output);
 
 /*! \brief Get energy and virial for L-J
  *
  * Note that work is an array of work structures
  */
-void get_pme_ener_vir_lj(pme_solve_work_t *work, int nthread, PmeOutput *output);
+void get_pme_ener_vir_lj(pme_solve_work_t* work, int nthread, PmeOutput* output);
 
-int solve_pme_yzx(const gmx_pme_t *pme, t_complex *grid,
-                  real vol,
-                  gmx_bool bEnerVir,
-                  int nthread, int thread);
+int solve_pme_yzx(const gmx_pme_t* pme, t_complex* grid, real vol, gmx_bool bEnerVir, int nthread, int thread);
 
-int solve_pme_lj_yzx(const gmx_pme_t *pme, t_complex **grid, gmx_bool bLB,
-                     real vol,
-                     gmx_bool bEnerVir, int nthread, int thread);
+int solve_pme_lj_yzx(const gmx_pme_t* pme,
+                     t_complex**      grid,
+                     gmx_bool         bLB,
+                     real             vol,
+                     gmx_bool         bEnerVir,
+                     int              nthread,
+                     int              thread);
 
 #endif