diff options
Diffstat (limited to 'chilbert/Algorithm.hpp')
-rw-r--r-- | chilbert/Algorithm.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chilbert/Algorithm.hpp b/chilbert/Algorithm.hpp index 9d6fd52..d43a42b 100644 --- a/chilbert/Algorithm.hpp +++ b/chilbert/Algorithm.hpp @@ -79,7 +79,7 @@ update1(const I& l, const I& t, const I& w, int n, I& e, int& d) e.flip(d); //#D d == n-1 ? 0 : d+1 ); // Update direction - d += 1 + t.fsb(); + d += 1 + t.find_first(); if (d >= n) { d -= n; } @@ -103,7 +103,7 @@ update2(const I& l, const I& t, const I& w, int n, I& e, int& d) e.flip(d); //#D d == n-1 ? 0 : d+1 ); // Update direction - d += 1 + t.fsb(); + d += 1 + t.find_first(); if (d >= n) { d -= n; } |