diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-05-06 15:00:10 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-05-06 15:00:10 -0400 |
commit | a9275adce368caaeaabc54bf0ca62a20a074e568 (patch) | |
tree | 7a1c4cc79dcb08cbeb8c35885866d9cf71035130 /lib/include | |
parent | d8f56eb5e7dfa41a21eb67503e570fd768d52109 (diff) | |
download | fuse_networks-a9275adce368caaeaabc54bf0ca62a20a074e568.tar.gz fuse_networks-a9275adce368caaeaabc54bf0ca62a20a074e568.tar.bz2 fuse_networks-a9275adce368caaeaabc54bf0ca62a20a074e568.zip |
changed the way cutoffs function to prevent erros, and added measurement for path length
Diffstat (limited to 'lib/include')
-rw-r--r-- | lib/include/network.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/include/network.hpp b/lib/include/network.hpp index d95b3c3..6012228 100644 --- a/lib/include/network.hpp +++ b/lib/include/network.hpp @@ -74,7 +74,7 @@ class elastic_network : public network { elastic_network(const graph&, cholmod_common*); elastic_network(const elastic_network&); - void fracture(hooks&, double weight = 0.5, double cutoff = 1e-11); + void fracture(hooks&, double weight = 0.5, double cutoff = 1e-12); current_info get_current_info(); }; |