Trisurf Monte Carlo simulator
Samo Penic
2012-02-23 e016c401c98b6a33392b551b2c40fccded21efe3
src/general.h
@@ -149,18 +149,12 @@
} ts_vertex_list;
/** ts_bond_data is a structure that describes a bond */
typedef struct {
struct ts_bond {
    ts_uint idx;
   ts_vertex *vtx1;
   ts_vertex *vtx2;
    ts_double bond_length;
    ts_double bond_length_dual;
} ts_bond_data;
struct ts_bond {
    ts_uint idx;
    ts_bond_data *data;
};
typedef struct ts_bond ts_bond;