188 lines
4.0 KiB
C
188 lines
4.0 KiB
C
|
/***********************************************************************************
|
||
|
CryptoMiniSat -- Copyright (c) 2009 Mate Soos
|
||
|
|
||
|
This program is free software: you can redistribute it and/or modify
|
||
|
it under the terms of the GNU General Public License as published by
|
||
|
the Free Software Foundation, either version 3 of the License, or
|
||
|
(at your option) any later version.
|
||
|
|
||
|
This program is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
GNU General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
**************************************************************************************************/
|
||
|
|
||
|
#ifndef BITARRAY_H
|
||
|
#define BITARRAY_H
|
||
|
|
||
|
//#define DEBUG_BITARRAY
|
||
|
|
||
|
#include <string.h>
|
||
|
#include <assert.h>
|
||
|
#ifdef _MSC_VER
|
||
|
#include <msvc/stdint.h>
|
||
|
#else
|
||
|
#include <stdint.h>
|
||
|
#endif //_MSC_VER
|
||
|
|
||
|
class BitArray
|
||
|
{
|
||
|
public:
|
||
|
BitArray() :
|
||
|
size(0)
|
||
|
, mp(NULL)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
BitArray(const BitArray& b) :
|
||
|
size(b.size)
|
||
|
{
|
||
|
mp = new uint64_t[size];
|
||
|
memcpy(mp, b.mp, sizeof(uint64_t)*size);
|
||
|
}
|
||
|
|
||
|
BitArray& operator=(const BitArray& b)
|
||
|
{
|
||
|
if (size != b.size) {
|
||
|
delete[] mp;
|
||
|
size = b.size;
|
||
|
mp = new uint64_t[size];
|
||
|
}
|
||
|
memcpy(mp, b.mp, sizeof(uint64_t)*size);
|
||
|
|
||
|
return *this;
|
||
|
}
|
||
|
|
||
|
BitArray& operator&=(const BitArray& b)
|
||
|
{
|
||
|
assert(size == b.size);
|
||
|
uint64_t* t1 = mp;
|
||
|
uint64_t* t2 = b.mp;
|
||
|
for (uint64_t i = 0; i < size; i++) {
|
||
|
*t1 &= *t2;
|
||
|
t1++;
|
||
|
t2++;
|
||
|
}
|
||
|
|
||
|
return *this;
|
||
|
}
|
||
|
|
||
|
const bool nothingInCommon(const BitArray& b) const
|
||
|
{
|
||
|
assert(size == b.size);
|
||
|
const uint64_t* t1 = mp;
|
||
|
const uint64_t* t2 = b.mp;
|
||
|
for (uint64_t i = 0; i < size; i++) {
|
||
|
if ((*t1)&(*t2)) return false;
|
||
|
t1++;
|
||
|
t2++;
|
||
|
}
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
BitArray& removeThese(const BitArray& b)
|
||
|
{
|
||
|
assert(size == b.size);
|
||
|
uint64_t* t1 = mp;
|
||
|
uint64_t* t2 = b.mp;
|
||
|
for (uint64_t i = 0; i < size; i++) {
|
||
|
*t1 &= ~(*t2);
|
||
|
t1++;
|
||
|
t2++;
|
||
|
}
|
||
|
|
||
|
return *this;
|
||
|
}
|
||
|
|
||
|
template<class T>
|
||
|
BitArray& removeThese(const T& rem)
|
||
|
{
|
||
|
for (uint32_t i = 0; i < rem.size(); i++) {
|
||
|
clearBit(rem[i]);
|
||
|
}
|
||
|
|
||
|
return *this;
|
||
|
}
|
||
|
|
||
|
void resize(uint _size, const bool fill)
|
||
|
{
|
||
|
_size = _size/64 + (bool)(_size%64);
|
||
|
if (size != _size) {
|
||
|
delete[] mp;
|
||
|
size = _size;
|
||
|
mp = new uint64_t[size];
|
||
|
}
|
||
|
if (fill) setOne();
|
||
|
else setZero();
|
||
|
}
|
||
|
|
||
|
~BitArray()
|
||
|
{
|
||
|
delete[] mp;
|
||
|
}
|
||
|
|
||
|
inline const bool isZero() const
|
||
|
{
|
||
|
const uint64_t* mp2 = (const uint64_t*)mp;
|
||
|
|
||
|
for (uint i = 0; i < size; i++) {
|
||
|
if (mp2[i]) return false;
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
inline void setZero()
|
||
|
{
|
||
|
memset(mp, 0, size*sizeof(uint64_t));
|
||
|
}
|
||
|
|
||
|
inline void setOne()
|
||
|
{
|
||
|
memset(mp, 0, size*sizeof(uint64_t));
|
||
|
}
|
||
|
|
||
|
inline void clearBit(const uint i)
|
||
|
{
|
||
|
#ifdef DEBUG_BITARRAY
|
||
|
assert(size*64 > i);
|
||
|
#endif
|
||
|
|
||
|
mp[i/64] &= ~((uint64_t)1 << (i%64));
|
||
|
}
|
||
|
|
||
|
inline void setBit(const uint i)
|
||
|
{
|
||
|
#ifdef DEBUG_BITARRAY
|
||
|
assert(size*64 > i);
|
||
|
#endif
|
||
|
|
||
|
mp[i/64] |= ((uint64_t)1 << (i%64));
|
||
|
}
|
||
|
|
||
|
inline const bool operator[](const uint& i) const
|
||
|
{
|
||
|
#ifdef DEBUG_BITARRAY
|
||
|
assert(size*64 > i);
|
||
|
#endif
|
||
|
|
||
|
return (mp[i/64] >> (i%64)) & 1;
|
||
|
}
|
||
|
|
||
|
inline const uint getSize() const
|
||
|
{
|
||
|
return size*64;
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
|
||
|
uint size;
|
||
|
uint64_t* mp;
|
||
|
};
|
||
|
|
||
|
#endif //BITARRAY_H
|
||
|
|