1
0
This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
Jip J. Dekker 1d9faf38de Squashed 'software/gecode/' content from commit 313e8764
git-subtree-dir: software/gecode
git-subtree-split: 313e87646da4fc2752a70e83df16d993121a8e40
2021-06-16 14:02:33 +10:00

255 lines
7.4 KiB
C++
Executable File

/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
* Main authors:
* Linnea Ingmar <linnea.ingmar@hotmail.com>
*
* Contributing authors:
* Christian Schulte <schulte@gecode.org>
*
* Copyright:
* Linnea Ingmar, 2017
* Christian Schulte, 2017
*
* This file is part of Gecode, the generic constraint
* development environment:
* http://www.gecode.org
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
namespace Gecode { namespace Int { namespace Extensional {
template<class IndexType>
forceinline unsigned int
BitSet<IndexType>::limit(void) const {
return static_cast<unsigned int>(_limit);
}
template<class IndexType>
forceinline bool
BitSet<IndexType>::empty(void) const {
return _limit == 0U;
}
template<class IndexType>
forceinline unsigned int
BitSet<IndexType>::words(void) const {
return static_cast<unsigned int>(_limit);
}
template<class IndexType>
forceinline unsigned int
BitSet<IndexType>::size(void) const {
return words();
}
template<class IndexType>
forceinline unsigned int
BitSet<IndexType>::width(void) const {
assert(!empty());
IndexType width = _index[0];
for (IndexType i=1; i<_limit; i++)
width = std::max(width,_index[i]);
assert(static_cast<unsigned int>(width+1U) >= words());
return static_cast<unsigned int>(width+1U);
}
template<class IndexType>
forceinline
BitSet<IndexType>::BitSet(Space& home, unsigned int n)
: _limit(static_cast<IndexType>(n)),
_index(home.alloc<IndexType>(n)),
_bits(home.alloc<BitSetData>(n)) {
// Set all bits in all words (including the last)
for (IndexType i=0; i<_limit; i++) {
_bits[i].init(true);
_index[i] = i;
}
}
template<class IndexType>
template<class OldIndexType>
forceinline
BitSet<IndexType>::BitSet(Space& home,
const BitSet<OldIndexType>& bs)
: _limit(static_cast<IndexType>(bs._limit)),
_index(home.alloc<IndexType>(_limit)),
_bits(home.alloc<BitSetData>(_limit)) {
assert(_limit > 0U);
for (IndexType i=0; i<_limit; i++) {
_bits[i] = bs._bits[i];
_index[i] = static_cast<IndexType>(bs._index[i]);
}
}
template<class IndexType>
forceinline void
BitSet<IndexType>::flush(void) {
_limit = 0U;
assert(empty());
}
template<class IndexType>
forceinline
BitSet<IndexType>::BitSet(Space&, const TinyBitSet<1U>&) {
GECODE_NEVER;
}
template<class IndexType>
forceinline
BitSet<IndexType>::BitSet(Space&, const TinyBitSet<2U>&) {
GECODE_NEVER;
}
template<class IndexType>
forceinline
BitSet<IndexType>::BitSet(Space&, const TinyBitSet<3U>&) {
GECODE_NEVER;
}
template<class IndexType>
forceinline
BitSet<IndexType>::BitSet(Space&, const TinyBitSet<4U>&) {
GECODE_NEVER;
}
template<class IndexType>
forceinline void
BitSet<IndexType>::replace_and_decrease(IndexType i, BitSetData w) {
assert(_limit > 0U);
BitSetData w_i = _bits[i];
if (w != w_i) {
_bits[i] = w;
if (w.none()) {
assert(_bits[i].none());
_limit--;
_bits[i] = _bits[_limit];
_index[i] = _index[_limit];
}
}
}
template<class IndexType>
forceinline void
BitSet<IndexType>::clear_mask(BitSetData* mask) const {
assert(_limit > 0U);
for (IndexType i=0; i<_limit; i++) {
mask[i].init(false);
assert(mask[i].none());
}
}
template<class IndexType>
forceinline void
BitSet<IndexType>::add_to_mask(const BitSetData* b, BitSetData* mask) const {
assert(_limit > 0U);
for (IndexType i=0; i<_limit; i++)
mask[i] = BitSetData::o(mask[i],b[_index[i]]);
}
template<class IndexType>
template<bool sparse>
forceinline void
BitSet<IndexType>::intersect_with_mask(const BitSetData* mask) {
assert(_limit > 0U);
if (sparse) {
for (IndexType i = _limit; i--; ) {
assert(!_bits[i].none());
BitSetData w_i = _bits[i];
BitSetData w_a = BitSetData::a(w_i, mask[_index[i]]);
replace_and_decrease(i,w_a);
assert(i == _limit || !_bits[i].none());
}
} else { // The same except different _indexing in mask
for (IndexType i = _limit; i--; ) {
assert(!_bits[i].none());
BitSetData w_i = _bits[i];
BitSetData w_a = BitSetData::a(w_i, mask[i]);
replace_and_decrease(i,w_a);
assert(i == _limit || !_bits[i].none());
}
}
}
template<class IndexType>
forceinline void
BitSet<IndexType>::intersect_with_masks(const BitSetData* a,
const BitSetData* b) {
assert(_limit > 0U);
for (IndexType i = _limit; i--; ) {
assert(!_bits[i].none());
BitSetData w_i = _bits[i];
IndexType offset = _index[i];
BitSetData w_o = BitSetData::o(a[offset], b[offset]);
BitSetData w_a = BitSetData::a(w_i,w_o);
replace_and_decrease(i,w_a);
assert(i == _limit || !_bits[i].none());
}
}
template<class IndexType>
forceinline void
BitSet<IndexType>::nand_with_mask(const BitSetData* b) {
assert(_limit > 0U);
for (IndexType i = _limit; i--; ) {
assert(!_bits[i].none());
BitSetData w = BitSetData::a(_bits[i],~(b[_index[i]]));
replace_and_decrease(i,w);
assert(i == _limit || !_bits[i].none());
}
}
template<class IndexType>
forceinline bool
BitSet<IndexType>::intersects(const BitSetData* b) const {
for (IndexType i=0; i<_limit; i++)
if (!BitSetData::a(_bits[i],b[_index[i]]).none())
return true;
return false;
}
template<class IndexType>
forceinline unsigned long long int
BitSet<IndexType>::ones(const BitSetData* b) const {
unsigned long long int o = 0U;
for (IndexType i=0; i<_limit; i++)
o += static_cast<unsigned long long int>
(BitSetData::a(_bits[i],b[_index[i]]).ones());
return o;
}
template<class IndexType>
forceinline unsigned long long int
BitSet<IndexType>::ones(void) const {
unsigned long long int o = 0U;
for (IndexType i=0; i<_limit; i++)
o += static_cast<unsigned long long int>(_bits[i].ones());
return o;
}
template<class IndexType>
forceinline unsigned long long int
BitSet<IndexType>::bits(void) const {
return (static_cast<unsigned long long int>(_limit) *
static_cast<unsigned long long int>(BitSetData::bpb));
}
}}}
// STATISTICS: int-prop