diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/percolation.cpp | 4 |
1 files 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'; |