aboutsummaryrefslogtreecommitdiffstats
path: root/chilbert/FixBitVec.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'chilbert/FixBitVec.hpp')
-rw-r--r--chilbert/FixBitVec.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/chilbert/FixBitVec.hpp b/chilbert/FixBitVec.hpp
index 001e4c2..8cd3d72 100644
--- a/chilbert/FixBitVec.hpp
+++ b/chilbert/FixBitVec.hpp
@@ -245,7 +245,7 @@ public:
/// Return 1 + the index of the first set bit, or 0 if there are none
size_t find_first() const
{
- return static_cast<size_t>(chilbert::ffs(m_rack));
+ return static_cast<size_t>(chilbert::find_first(m_rack));
}
/// Return the number of set bits
@@ -367,16 +367,16 @@ struct is_bitvec<CFixBitVec>
template <>
void
-grayCode(CFixBitVec& value)
+gray_code(CFixBitVec& value)
{
value.rack() ^= (value.rack() >> 1);
}
template <>
void
-grayCodeInv(CFixBitVec& value)
+gray_code_inv(CFixBitVec& value)
{
- grayCodeInv<CFixBitVec::Rack>(value.rack());
+ gray_code_inv<CFixBitVec::Rack>(value.rack());
}
} // namespace chilbert