| 526 | } |
| 527 | |
| 528 | void Tableau::setRightHandSide( const double *b ) |
| 529 | { |
| 530 | memcpy( _b, b, sizeof( double ) * _m ); |
| 531 | |
| 532 | for ( unsigned i = 0; i < _m; ++i ) |
| 533 | { |
| 534 | if ( !FloatUtils::isZero( _b[i] ) ) |
| 535 | _rhsIsAllZeros = false; |
| 536 | } |
| 537 | } |
| 538 | |
| 539 | void Tableau::setRightHandSide( unsigned index, double value ) |
| 540 | { |