| 594 | } |
| 595 | |
| 596 | void Tableau::getEntryCandidates( List<unsigned> &candidates ) const |
| 597 | { |
| 598 | candidates.clear(); |
| 599 | const double *costFunction = _costFunctionManager->getCostFunction(); |
| 600 | for ( unsigned i = 0; i < _n - _m; ++i ) |
| 601 | { |
| 602 | if ( eligibleForEntry( i, costFunction ) ) |
| 603 | candidates.append( i ); |
| 604 | } |
| 605 | } |
| 606 | |
| 607 | void Tableau::setEnteringVariableIndex( unsigned nonBasic ) |
| 608 | { |
no test coverage detected