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

Method intersect_with_masks

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

Source from the content-addressed store, hash-verified

103
104 template<unsigned int sz>
105 forceinline void
106 TinyBitSet<sz>::intersect_with_masks(const BitSetData* a,
107 const BitSetData* b) {
108 for (unsigned int i=0U; i<sz; i++)
109 _bits[i] = BitSetData::a(_bits[i], BitSetData::o(a[i],b[i]));
110 }
111
112 template<unsigned int sz>
113 forceinline void

Callers

nothing calls this directly

Calls 2

aFunction · 0.85
oFunction · 0.50

Tested by

no test coverage detected