| 1 | 
+ | 
#include <iostream> | 
| 2 | 
  | 
#include <cstdlib> | 
| 3 | 
  | 
 | 
| 4 | 
+ | 
 | 
| 5 | 
  | 
#include "Exclude.hpp" | 
| 6 | 
  | 
 | 
| 7 | 
  | 
int Exclude::nExcludes; | 
| 8 | 
+ | 
int* Exclude::exPairs; | 
| 9 | 
  | 
 | 
| 10 | 
  | 
Exclude::Exclude( int theIndex ){  | 
| 11 | 
< | 
  exI = theIndex*2; | 
| 12 | 
< | 
  exJ = theIndex*2 + 1; | 
| 11 | 
> | 
   | 
| 12 | 
> | 
  index = theIndex; | 
| 13 | 
> | 
  exI = index*2; | 
| 14 | 
> | 
  exJ = index*2 + 1; | 
| 15 | 
  | 
} | 
| 16 | 
  | 
 | 
| 17 | 
  | 
void Exclude::createArray( int the_nExcludes ){ | 
| 24 | 
  | 
  delete[] exPairs; | 
| 25 | 
  | 
} | 
| 26 | 
  | 
 | 
| 27 | 
+ | 
void Exclude::printMe( void ){ | 
| 28 | 
+ | 
   | 
| 29 | 
+ | 
  std::cerr << "exclude[" << index << "] i, j: " << exPairs[exI] << " - " << exPairs[exJ] << "\n"; | 
| 30 | 
+ | 
} | 
| 31 | 
+ | 
 | 
| 32 | 
  | 
void Exclude::setPair( int i, int j ){ | 
| 33 | 
  | 
  exPairs[exI] = i; | 
| 34 | 
  | 
  exPairs[exJ] = j; |