summaryrefslogtreecommitdiff
path: root/src/fracture_square.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fracture_square.cpp')
-rw-r--r--src/fracture_square.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fracture_square.cpp b/src/fracture_square.cpp
index dec4a2c..96e6030 100644
--- a/src/fracture_square.cpp
+++ b/src/fracture_square.cpp
@@ -57,9 +57,9 @@ int main(int argc, char* argv[]) {
cholmod_common c;
CHOL_F(start)(&c);
- ma meas(Lx, Ly, 2*Lx, 2*Ly, beta);
+ ma meas(Lx, Ly, beta);
graph G(Lx, Ly);
- network perm_network(G, &c);
+ elastic_network perm_network(G, &c);
randutils::auto_seed_128 seeds;
std::mt19937 rng{seeds};
@@ -67,7 +67,7 @@ int main(int argc, char* argv[]) {
for (unsigned trial = 0; trial < N; trial++) {
while (true) {
try {
- network tmp_network(perm_network);
+ elastic_network tmp_network(perm_network);
tmp_network.set_thresholds(beta, rng);
tmp_network.fracture(meas);
break;