Trisurf Monte Carlo simulator
Samo Penic
2019-02-27 2eaa9ed304d3cf22883db99a41a277cde6deb617
Fix in size of c0 for clustering
1 files modified
2 ■■■ changed files
src/cluster.c 2 ●●● patch | view | raw | blame | history
src/cluster.c
@@ -102,7 +102,7 @@
/* This is a stub function. User should check whether the vertex is clustering or not. */
ts_bool is_clusterable(ts_vertex *vtx){
    if(fabs(vtx->c)>1e-6){
    if(fabs(vtx->c)>1e-15){
        return 1;
    }
    else {