commit | author | age
|
7f6076
|
1 |
/* vim: set ts=4 sts=4 sw=4 noet : */ |
d7639a
|
2 |
#ifndef _H_CELL |
SP |
3 |
#define _H_CELL |
bb77ca
|
4 |
ts_cell_list *init_cell_list(ts_uint ncmax1, ts_uint ncmax2, ts_uint ncmax3, ts_double stepsize); |
SP |
5 |
ts_bool cell_free(ts_cell* cell); |
|
6 |
ts_bool cell_list_free(ts_cell_list *clist); |
d7639a
|
7 |
inline ts_uint vertex_self_avoidance(ts_vesicle *vesicle, ts_vertex *vtx); |
a63f17
|
8 |
inline ts_bool cell_add_vertex(ts_cell *cell, ts_vertex *vtx); |
SP |
9 |
inline ts_bool cell_remove_vertex(ts_cell *cell, ts_vertex *vtx); |
bb77ca
|
10 |
ts_bool cell_list_cell_occupation_clear(ts_cell_list *clist); |
a63f17
|
11 |
inline ts_bool cell_occupation_number_and_internal_proximity(ts_cell_list *clist, ts_uint cellidx, ts_vertex *vtx); |
d7639a
|
12 |
#endif |