diff options
-rw-r--r-- | walk.cpp | 26 |
1 files changed, 19 insertions, 7 deletions
@@ -102,12 +102,14 @@ Vector randomStep(const QuadraticModel& M, const Vector& x₀, Real E, Rng& r, R int main(int argc, char* argv[]) { unsigned N = 10; - unsigned steps = 10; + Real T = 10; + Real T₀ = 2; Real E = 0; + Real Δt = 1e-4; int opt; - while ((opt = getopt(argc, argv, "N:E:n:")) != -1) { + while ((opt = getopt(argc, argv, "N:E:T:t:I:")) != -1) { switch (opt) { case 'N': N = (unsigned)atof(optarg); @@ -115,8 +117,14 @@ int main(int argc, char* argv[]) { case 'E': E = atof(optarg); break; - case 'n': - steps = (unsigned)atof(optarg); + case 'T': + T = atof(optarg); + break; + case 'I': + T₀ = atof(optarg); + break; + case 't': + Δt = atof(optarg); break; default: exit(1); @@ -135,11 +143,15 @@ int main(int argc, char* argv[]) { std::cout << std::setprecision(15); + for (Real t = 0; t < T₀; t += Δt) { + x₀ = randomStep(ls, x₀, E, r, Δt); + } + Vector x = x₀; - for (unsigned step = 0; step < steps; step++) { - x = randomStep(ls, x, E, r); - std::cout << ls.H(x) / N << " " << x.dot(x₀) / N << std::endl; + for (Real t = 0; t < T; t += Δt) { + std::cout << t << " " << x.dot(x₀) / N << std::endl; + x = randomStep(ls, x, E, r, Δt); } return 0; |