Trisurf Monte Carlo simulator
Samo Penic
2014-06-15 7d62fc765adc11bbcb7db0716ac5dc19145dca80
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);
a63f17 7 inline ts_bool cell_add_vertex(ts_cell *cell, ts_vertex *vtx);
SP 8 inline ts_bool cell_remove_vertex(ts_cell *cell, ts_vertex *vtx);
bb77ca 9 ts_bool cell_list_cell_occupation_clear(ts_cell_list *clist);
a63f17 10 inline ts_bool cell_occupation_number_and_internal_proximity(ts_cell_list *clist, ts_uint cellidx, ts_vertex *vtx);
d7639a 11 #endif