MCPcopy Create free account
hub / github.com/devosoft/avida / OR

Method OR

avida-core/source/tools/cBitArray.h:328–334  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

326 }
327
328 cBitArray OR(const cBitArray & array2) const {
329 assert(array_size == array2.array_size);
330 cBitArray out_array;
331 out_array.bit_array.OR(bit_array, array2.bit_array, array_size);
332 out_array.array_size = array_size;
333 return out_array;
334 }
335
336 cBitArray NAND(const cBitArray & array2) const {
337 assert(array_size == array2.array_size);

Callers 1

cBitArrayClass · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected