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

Method NAND

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

Source from the content-addressed store, hash-verified

334 }
335
336 cBitArray NAND(const cBitArray & array2) const {
337 assert(array_size == array2.array_size);
338 cBitArray out_array;
339 out_array.bit_array.NAND(bit_array, array2.bit_array, array_size);
340 out_array.array_size = array_size;
341 return out_array;
342 }
343
344 cBitArray NOR(const cBitArray & array2) const {
345 assert(array_size == array2.array_size);

Callers 1

cBitArrayClass · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected