diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-06-12 10:34:51 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-06-12 10:34:51 -0400 |
commit | e76333883d3620622ac616b7ca68a8baf459c640 (patch) | |
tree | f9a878d2f74defacc2175633386c20bbb96ebead /lib | |
parent | 749247d24cca4657570e6c2a974321a94a49a0cc (diff) | |
download | fuse_networks-e76333883d3620622ac616b7ca68a8baf459c640.tar.gz fuse_networks-e76333883d3620622ac616b7ca68a8baf459c640.tar.bz2 fuse_networks-e76333883d3620622ac616b7ca68a8baf459c640.zip |
fixed the current cutoff is the percolation measurements
Diffstat (limited to 'lib')
-rw-r--r-- | lib/include/network.hpp | 2 | ||||
-rw-r--r-- | lib/src/network.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/include/network.hpp b/lib/include/network.hpp index 1ffe742..62e27d6 100644 --- a/lib/include/network.hpp +++ b/lib/include/network.hpp @@ -14,6 +14,8 @@ #include "current_info.hpp" #include "array_hash.hpp" +#define CURRENT_CUTOFF 1e-11 + class network { public: const graph& G; diff --git a/lib/src/network.cpp b/lib/src/network.cpp index 05a208f..3424b94 100644 --- a/lib/src/network.cpp +++ b/lib/src/network.cpp @@ -1,8 +1,6 @@ #include "network.hpp" -#define CURRENT_CUTOFF 1e-11 - class nofuseException: public std::exception { virtual const char* what() const throw() |