diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-04-27 18:02:58 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-04-27 18:02:58 -0400 |
commit | 7f7bfc7789c7c0d5b8a8daeda82b349ee1ea52a0 (patch) | |
tree | db215fb3e4d69036e78e4a6db685bbbb29116c90 /lib/include | |
parent | 63dd7320fbef9c9a95bf6953770072baf735c34e (diff) | |
download | fuse_networks-7f7bfc7789c7c0d5b8a8daeda82b349ee1ea52a0.tar.gz fuse_networks-7f7bfc7789c7c0d5b8a8daeda82b349ee1ea52a0.tar.bz2 fuse_networks-7f7bfc7789c7c0d5b8a8daeda82b349ee1ea52a0.zip |
fixed problems with the current cutoff
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 ba98086..d95b3c3 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-13); + void fracture(hooks&, double weight = 0.5, double cutoff = 1e-11); current_info get_current_info(); }; |