summaryrefslogtreecommitdiff
path: root/hadamard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'hadamard.cpp')
-rw-r--r--hadamard.cpp10
1 files changed, 3 insertions, 7 deletions
diff --git a/hadamard.cpp b/hadamard.cpp
index 1d99a2e..1afb270 100644
--- a/hadamard.cpp
+++ b/hadamard.cpp
@@ -92,9 +92,6 @@ int main(int argc, char* argv[]) {
case 'M':
M = (unsigned)atof(optarg);
break;
- case 'm':
- m = (unsigned)atof(optarg);
- break;
default:
exit(1);
}
@@ -135,11 +132,10 @@ int main(int argc, char* argv[]) {
sim.E = sim.M.energy();
}
- std::cout << "Beginning " << n_tuning << " tuning steps for " << n << ".\n";
- p.tune(n_tuning, ε);
- std::cout << "Finished tuning, beginning " << N << " dry tempering updates of " << M
+ std::cout << "Beginning simulation of " << n << ".\n";
+ std::cout << "Beginning " << n_tuning << " tuning tempering updates of " << M
<< " sweeps each.\n";
- p.run(m, M, true);
+ p.tune(n_tuning, M, ε);
std::cout << "Finished tuning, beginning " << N << " measurement tempering updates of " << M
<< " sweeps each.\n";
p.run(N, M);