Trisurf Monte Carlo simulator
Samo Penic
2019-09-25 d5d78a49c6b51fb1f6f0661d063034eaf65e02f7
commit | author | age
7f6076 1 /* vim: set ts=4 sts=4 sw=4 noet : */
2bdec5 2 #ifndef _POLY_H
M 3 #define _POLY_H
bcf455 4 #include"io.h"
2bdec5 5
M 6 #include"general.h"
7
8 ts_poly    *init_poly(ts_uint n, ts_vertex *grafted_vtx);
9
624f81 10 ts_poly_list *init_poly_list(ts_uint n_poly, ts_uint n_mono, ts_vertex_list *vlist, ts_vesicle *vesicle);
2bdec5 11
8db569 12 ts_bool poly_free(ts_poly *poly);
M 13
14 ts_bool poly_list_free(ts_poly_list *poly_list);
15
48bb92 16 ts_bool poly_assign_spring_const(ts_vesicle *vesicle);
M 17
bcf455 18 ts_bool poly_assign_filament_xi(ts_vesicle *vesicle, ts_tape *tape);
M 19
a752b5 20 ts_poly *remove_poly_with_index(ts_poly_list *poly_list, ts_uint idx);
SP 21 ts_bool remove_random_polymeres(ts_poly_list *poly_list, ts_uint number);
d43116 22 ts_poly_list *init_empty_poly_list(ts_uint n_poly, ts_uint n_mono);
2bdec5 23 #endif