MCPcopy Create free account
hub / github.com/Gecode/gecode / empty

Method empty

gecode/int/extensional/tiny-bit-set.hpp:163–169  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

161
162 template<unsigned int sz>
163 forceinline bool
164 TinyBitSet<sz>::empty(void) const { // Linear complexity...
165 for (unsigned int i=0U; i<sz; i++)
166 if (!_bits[i].none())
167 return false;
168 return true;
169 }
170
171 template<unsigned int sz>
172 forceinline unsigned int

Callers 1

TinyBitSetMethod · 0.45

Calls 1

noneMethod · 0.45

Tested by

no test coverage detected