summaryrefslogtreecommitdiff
path: root/examples/clock.cpp
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2019-12-13 16:18:03 -0500
committerJaron Kent-Dobias <jaron@kent-dobias.com>2019-12-13 16:18:03 -0500
commita75a3b44ffe9c99fc6d1c07ba4c4542b85f02790 (patch)
tree6281a4e84eb92105c3a4a8433d0aeef8271ec632 /examples/clock.cpp
parent4991418a416b75680737ec8f1e47b355b219728d (diff)
downloadc++-a75a3b44ffe9c99fc6d1c07ba4c4542b85f02790.tar.gz
c++-a75a3b44ffe9c99fc6d1c07ba4c4542b85f02790.tar.bz2
c++-a75a3b44ffe9c99fc6d1c07ba4c4542b85f02790.zip
fixed some bugs due to new class in global namespace
Diffstat (limited to 'examples/clock.cpp')
-rw-r--r--examples/clock.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/clock.cpp b/examples/clock.cpp
index 3403f23..8777f06 100644
--- a/examples/clock.cpp
+++ b/examples/clock.cpp
@@ -64,14 +64,14 @@ int main(int argc, char *argv[]) {
graph<> G(D, L);
// initialize the system
- system<dihedral_t<WOLFF_POTTSQ>, potts_t<WOLFF_POTTSQ>, graph<>> S(G, T, Z, B);
+ wolff::system<dihedral_t<WOLFF_POTTSQ>, potts_t<WOLFF_POTTSQ>, graph<>> S(G, T, Z, B);
// initialize the random number generator
auto seed = std::chrono::high_resolution_clock::now().time_since_epoch().count();
- std::mt19937 rng{seed};
+ std::mt19937 rng(seed);
// define function that generates self-inverse rotations
- std::function <dihedral_t<WOLFF_POTTSQ>(std::mt19937&, const system<dihedral_t<WOLFF_POTTSQ>, potts_t<WOLFF_POTTSQ>, graph<>>&, const graph<>::vertex&)> gen_r = [] (std::mt19937& r, const system<dihedral_t<WOLFF_POTTSQ>, potts_t<WOLFF_POTTSQ>, graph<>>& S, const graph<>::vertex& v) -> dihedral_t<WOLFF_POTTSQ> {
+ std::function <dihedral_t<WOLFF_POTTSQ>(std::mt19937&, const wolff::system<dihedral_t<WOLFF_POTTSQ>, potts_t<WOLFF_POTTSQ>, graph<>>&, const graph<>::vertex&)> gen_r = [] (std::mt19937& r, const wolff::system<dihedral_t<WOLFF_POTTSQ>, potts_t<WOLFF_POTTSQ>, graph<>>& S, const graph<>::vertex& v) -> dihedral_t<WOLFF_POTTSQ> {
dihedral_t<WOLFF_POTTSQ> rot;
rot.is_reflection = true;
std::uniform_int_distribution<unsigned> dist(0, WOLFF_POTTSQ - 2);