From 65cd6ab8da405199feed1932111630b7664af6e6 Mon Sep 17 00:00:00 2001 From: tlk00 Date: Thu, 11 Nov 2021 09:48:05 -0500 Subject: [PATCH] Code cleanup --- src/bm.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/bm.h b/src/bm.h index 9be941ef..b5e88d0a 100644 --- a/src/bm.h +++ b/src/bm.h @@ -1728,6 +1728,8 @@ class bvector /*! \brief 3-operand AND where result is ORed into the terget vector : this |= bv1 AND bv2 + TARGET := TARGET OR (BV1 AND BV2) + \param bv1 - Argument vector 1 \param bv2 - Argument vector 2 \param opt_mode - optimization compression @@ -1735,7 +1737,7 @@ class bvector call to optimize() @sa optimize, bit_and */ - bm::bvector& bit_and_or(const bm::bvector& bv1, + bm::bvector& bit_or_and(const bm::bvector& bv1, const bm::bvector& bv2, typename bm::bvector::optmode opt_mode=opt_none); @@ -5554,7 +5556,7 @@ bvector::bit_and(const bm::bvector& bv1, template bm::bvector& -bvector::bit_and_or(const bm::bvector& bv1, +bvector::bit_or_and(const bm::bvector& bv1, const bm::bvector& bv2, typename bm::bvector::optmode opt_mode) {