Trisurf Monte Carlo simulator
Samo Penic
2012-07-12 a7a6d6d521ea3006963ae3f1a3fd8975cf3ba9b2
commit | author | age
d7639a 1 #ifndef _H_CELL
SP 2 #define _H_CELL
bb77ca 3 ts_cell_list  *init_cell_list(ts_uint ncmax1, ts_uint ncmax2, ts_uint ncmax3, ts_double stepsize);
SP 4 ts_bool cell_free(ts_cell* cell);
5 ts_bool cell_list_free(ts_cell_list *clist);
d7639a 6 inline ts_uint vertex_self_avoidance(ts_vesicle *vesicle, ts_vertex *vtx);
bb77ca 7 ts_bool cell_add_vertex(ts_cell *cell, ts_vertex *vtx);
SP 8 ts_bool cell_list_cell_occupation_clear(ts_cell_list *clist);
9
aec47d 10 ts_bool cell_occupation_number_and_internal_proximity(ts_cell_list *clist, ts_uint cellidx, ts_vertex *vtx, ts_vertex *tvtx);
d7639a 11 #endif