summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2024-12-25 19:46:34 +0100
committerJaron Kent-Dobias <jaron@kent-dobias.com>2024-12-25 19:46:34 +0100
commitd668bb5cf10c30871bf1bfe6ba0130cb3abe1f59 (patch)
tree49cbc44edb6b1b00a9f59f704d4c9e000817d923
parentcedc3b70bfd9226f87674ab6d6faa2b349a1e4a9 (diff)
downloadcode-d668bb5cf10c30871bf1bfe6ba0130cb3abe1f59.tar.gz
code-d668bb5cf10c30871bf1bfe6ba0130cb3abe1f59.tar.bz2
code-d668bb5cf10c30871bf1bfe6ba0130cb3abe1f59.zip
Allow for initial walking time, and record results differently.
-rw-r--r--walk.cpp26
1 files changed, 19 insertions, 7 deletions
diff --git a/walk.cpp b/walk.cpp
index 7c5d01c..ab4dbd3 100644
--- a/walk.cpp
+++ b/walk.cpp
@@ -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;