| 22 | using namespace std; |
| 23 | |
| 24 | BitVector randomBitVector(int n) |
| 25 | { |
| 26 | BitVector t(n); |
| 27 | for (int i = 0; i < n; i++) t[i] = random()%2; |
| 28 | return t; |
| 29 | } |
| 30 | |
| 31 | #if OLD_TEST |
| 32 | // Doug wrote this AMR test code |
no outgoing calls
no test coverage detected