/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Linnea Ingmar * * Contributing authors: * Christian Schulte * * 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 { /* * Tiny bit-set * */ template forceinline TinyBitSet::TinyBitSet(Space&, unsigned int n) { assert(n <= sz); /// Set the active bits for (unsigned int i=0U; i template forceinline TinyBitSet::TinyBitSet(Space&, const TinyBitSet& sbs) { GECODE_ASSUME(sz <= largersz); assert(!sbs.empty()); for (unsigned int i=0U; i template forceinline TinyBitSet::TinyBitSet(Space&, const BitSet& sbs) { assert(sz == sbs.width()); assert(!sbs.empty()); for (unsigned int i=0U; i forceinline void TinyBitSet::clear_mask(BitSetData* mask) { for (unsigned int i=0U; i forceinline void TinyBitSet::add_to_mask(const BitSetData* b, BitSetData* mask) const { for (unsigned int i=0U; i template forceinline void TinyBitSet::intersect_with_mask(const BitSetData* mask) { for (unsigned int i=0U; i forceinline void TinyBitSet::intersect_with_masks(const BitSetData* a, const BitSetData* b) { for (unsigned int i=0U; i forceinline void TinyBitSet::nand_with_mask(const BitSetData* b) { for (unsigned int i=0U; i forceinline void TinyBitSet::flush(void) { for (unsigned int i=0U; i forceinline bool TinyBitSet::intersects(const BitSetData* b) { for (unsigned int i=0U; i forceinline unsigned long long int TinyBitSet::ones(const BitSetData* b) const { unsigned long long int o = 0U; for (unsigned int i=0U; i (BitSetData::a(_bits[i],b[i]).ones()); return o; } template forceinline unsigned long long int TinyBitSet::ones(void) const { unsigned long long int o = 0U; for (unsigned int i=0U; i(_bits[i].ones()); return o; } template forceinline unsigned long long int TinyBitSet::bits(void) const { return (static_cast(sz) * static_cast(BitSetData::bpb)); } template forceinline bool TinyBitSet::empty(void) const { // Linear complexity... for (unsigned int i=0U; i forceinline unsigned int TinyBitSet::width(void) const { assert(!empty()); /// Find the index of the last non-zero word for (unsigned int i=sz; i--; ) if (!_bits[i].none()) return i+1U; GECODE_NEVER; return 0U; } template forceinline unsigned int TinyBitSet::words(void) const { return width(); } template forceinline unsigned int TinyBitSet::size(void) const { return sz; } }}} // STATISTICS: int-prop