Trisurf Monte Carlo simulator
Samo Penic
2013-11-22 4e56fe682e6ad34c161aa40c06af4e3e0088962e
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 {
7     int thread_no;
8     ts_vesicle *vesicle;
4e56fe 9     pthread_mutex_t *vtx_tainting_lock;
c9884c 10 } thdata;
SP 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