From db745a57fc981df7db3c308321d4023d75adf351 Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Mon, 5 Aug 2019 10:49:37 -0400 Subject: percolation is one sided --- src/percolation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/percolation.cpp b/src/percolation.cpp index 0b1d0ad..b9f278e 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); + fuse_network.fracture(meas, true); 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); + fuse_network.fracture(meas, true); break; } catch (std::exception &e) { std::cout << e.what() << '\n'; -- cgit v1.2.3-54-g00ecf