Trisurf Monte Carlo simulator
Samo Penic
2013-11-05 c9884c483b58327cd6acb754c0805d3f3299b5e8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _TIMESTEP_H
#define _TIMESTEP_H
 
 
typedef struct str_thdata
{
    int thread_no;
    ts_vesicle *vesicle;
} thdata;
 
 
void * single_timestep(void *thread_data);
ts_bool run_simulation(ts_vesicle *vesicle, ts_uint mcsweeps, ts_uint inititer, ts_uint iterations);
#endif