diff options
-rw-r--r-- | src/animate_fracture.cpp | 2 | ||||
-rw-r--r-- | src/fracture.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/animate_fracture.cpp b/src/animate_fracture.cpp index 2d64072..66afc83 100644 --- a/src/animate_fracture.cpp +++ b/src/animate_fracture.cpp @@ -57,7 +57,7 @@ int main(int argc, char* argv[]) { cholmod_common c; CHOL_F(start)(&c); - animate meas(Lx, Ly, 512, argc, argv); + animate meas(Lx, Ly, 700, argc, argv); randutils::auto_seed_128 seeds; std::mt19937 rng{seeds}; diff --git a/src/fracture.cpp b/src/fracture.cpp index 2651668..f697617 100644 --- a/src/fracture.cpp +++ b/src/fracture.cpp @@ -73,8 +73,8 @@ int main(int argc, char* argv[]) { std::mt19937 rng{seeds}; if (use_aN) { - unsigned Mx = pow(2, ceil(log2(4*sqrt(2*n*a)))); - unsigned My = pow(2, ceil(log2(4*sqrt(2*n/a)))); + unsigned Mx = (unsigned)4*sqrt(2*n*a); + unsigned My = (unsigned)4*sqrt(2*n/a); ma meas(n, a, Mx, My, beta); |