| 2496 | } |
| 2497 | |
| 2498 | double *Tableau::getInverseBasisMatrix() const |
| 2499 | { |
| 2500 | ASSERT( basisMatrixAvailable() ); |
| 2501 | |
| 2502 | double *result = new double[_m * _m]; |
| 2503 | _basisFactorization->invertBasis( result ); |
| 2504 | return result; |
| 2505 | } |
| 2506 | |
| 2507 | Set<unsigned> Tableau::getBasicVariables() const |
| 2508 | { |
no test coverage detected