Trisurf Monte Carlo simulator
Samo Penic
2013-11-27 0652ee2715994b48a9bbfd1132bf0b65ad206289
commit | author | age
aec47d 1 #ifndef _TIMESTEP_H
SP 2 #define _TIMESTEP_H
4e56fe 3 #include<pthread.h>
c9884c 4
SP 5 typedef struct str_thdata
6 {
50f10f 7     ts_uint thread_no;
SP 8     ts_uint threads;
c9884c 9     ts_vesicle *vesicle;
SP 10 } thdata;
11
12
13 void * single_timestep(void *thread_data);
d7a113 14 ts_bool run_simulation(ts_vesicle *vesicle, ts_uint mcsweeps, ts_uint inititer, ts_uint iterations);
aec47d 15 #endif