
Public Member Functions | |
| SPYRelation (const vector< vector< bool > > &TCGMatrixHorizIP, const vector< vector< bool > > &TCGMatrixVertIP) | |
| bool | operator() (int i, int j) const |
Private Attributes | |
| const vector< vector< bool > > & | TCGMatrixHoriz |
| const vector< vector< bool > > & | TCGMatrixVert |
|
||||||||||||
|
Definition at line 144 of file pltobtree.h. References TCGMatrixHoriz, and TCGMatrixVert.
00146 : TCGMatrixHoriz(TCGMatrixHorizIP), 00147 TCGMatrixVert(TCGMatrixVertIP) 00148 {} |
|
||||||||||||
|
Definition at line 257 of file pltobtree.h. References TCGMatrixHoriz, and TCGMatrixVert.
00258 {
00259 if (TCGMatrixHoriz[i][j])
00260 return true;
00261 else if (TCGMatrixHoriz[j][i])
00262 return false;
00263 else if (TCGMatrixVert[j][i])
00264 return false;
00265 else if (TCGMatrixVert[i][j])
00266 return true;
00267 else
00268 return i < j;
00269 }
|
|
|
Definition at line 153 of file pltobtree.h. Referenced by operator()(), and SPYRelation(). |
|
|
Definition at line 154 of file pltobtree.h. Referenced by operator()(), and SPYRelation(). |
1.3.2