blob: 2bea6cf0ba62d1d3a58d8f315b98a8c2a53c5174 [file] [log] [blame]
/// \file
/// Leapfrog time integrator
#ifndef __LEAPFROG_H
#define __LEAPFROG_H
#include "CoMDTypes.h"
double timestep(SimFlat* s, int n, real_t dt);
void computeForce(SimFlat* s);
void kineticEnergy(SimFlat* s);
/// Update local and remote link cells after atoms have moved.
void redistributeAtoms(struct SimFlatSt* sim);
#endif