summaryrefslogtreecommitdiff
path: root/src/percolation.cpp
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2019-10-02 10:52:05 -0400
committerJaron Kent-Dobias <jaron@kent-dobias.com>2019-10-02 10:52:05 -0400
commit2de471524c9e281e1b83049183d5a4deecd8b7b3 (patch)
tree4d158d7137f247aa0f64a2760ff80f043ae0a61c /src/percolation.cpp
parent47a7c96d1848e3a3edbcfb17e645790d31c01a67 (diff)
downloadfuse_networks-2de471524c9e281e1b83049183d5a4deecd8b7b3.tar.gz
fuse_networks-2de471524c9e281e1b83049183d5a4deecd8b7b3.tar.bz2
fuse_networks-2de471524c9e281e1b83049183d5a4deecd8b7b3.zip
Updated percolation and sample, percolation measurements presently
gutted
Diffstat (limited to 'src/percolation.cpp')
-rw-r--r--src/percolation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/percolation.cpp b/src/percolation.cpp
index b9f278e..0b1d0ad 100644
--- a/src/percolation.cpp
+++ b/src/percolation.cpp
@@ -81,7 +81,7 @@ int main(int argc, char* argv[]) {
graph G(n, a, rng);
percolation_network fuse_network(G, &c);
fuse_network.set_thresholds(beta, rng);
- fuse_network.fracture(meas, true);
+ fuse_network.fracture(meas);
break;
} catch (std::exception &e) {
std::cout << e.what() << '\n';
@@ -99,7 +99,7 @@ int main(int argc, char* argv[]) {
graph G(Lx, Ly);
percolation_network fuse_network(G, &c);
fuse_network.set_thresholds(beta, rng);
- fuse_network.fracture(meas, true);
+ fuse_network.fracture(meas);
break;
} catch (std::exception &e) {
std::cout << e.what() << '\n';