diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-09-25 17:28:05 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-09-25 17:28:05 -0400 |
commit | e937fc2fc5737f591d0b952e3b3b91f70090de9e (patch) | |
tree | f2025f93bedc02cc5bd752a867dc8154f0411be3 | |
parent | 16f4e128ae1f1c5759c643f51c1f7e7bfa892dc4 (diff) | |
download | fuse_networks-e937fc2fc5737f591d0b952e3b3b91f70090de9e.tar.gz fuse_networks-e937fc2fc5737f591d0b952e3b3b91f70090de9e.tar.bz2 fuse_networks-e937fc2fc5737f591d0b952e3b3b91f70090de9e.zip |
correctly construct measurements in square fracture
-rw-r--r-- | src/fracture_square.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fracture_square.cpp b/src/fracture_square.cpp index 96e6030..f73ed85 100644 --- a/src/fracture_square.cpp +++ b/src/fracture_square.cpp @@ -57,7 +57,7 @@ int main(int argc, char* argv[]) { cholmod_common c; CHOL_F(start)(&c); - ma meas(Lx, Ly, beta); + ma meas(Lx, Ly, beta, 0.5); graph G(Lx, Ly); elastic_network perm_network(G, &c); |