#include "bitBoardP.h"Include dependency graph for bitBoardP.cxx:

Go to the source code of this file.
Functions | |
| ostream & | operator<< (ostream &out, const BitBoard &bb) |
|
||||||||||||
|
Definition at line 48 of file bitBoardP.cxx.
00049 {
00050 out << bb.getNumBitsSet()
00051 << " bits are set to TRUE in bitBoard of size "
00052 << bb.getSize() << endl;
00053 //if (bb.getNumBitsSet()) out << bb.getIndicesOfSetBits();
00054 return out;
00055 }
|
1.3.2