aboutsummaryrefslogtreecommitdiffstats
path: root/chilbert/BigBitVec.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'chilbert/BigBitVec.hpp')
-rw-r--r--chilbert/BigBitVec.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/chilbert/BigBitVec.hpp b/chilbert/BigBitVec.hpp
index 91a516d..be6e5e0 100644
--- a/chilbert/BigBitVec.hpp
+++ b/chilbert/BigBitVec.hpp
@@ -131,16 +131,16 @@ struct is_bitvec<CBigBitVec>
template <>
void
-grayCode(CBigBitVec& value)
+gray_code(CBigBitVec& value)
{
- grayCode(static_cast<MultiBitVec<CBigBitVec>&>(value));
+ gray_code(static_cast<MultiBitVec<CBigBitVec>&>(value));
}
template <>
void
-grayCodeInv(CBigBitVec& value)
+gray_code_inv(CBigBitVec& value)
{
- grayCodeInv(static_cast<MultiBitVec<CBigBitVec>&>(value));
+ gray_code_inv(static_cast<MultiBitVec<CBigBitVec>&>(value));
}
} // namespace chilbert