| 22 | #include "TableauRow.h" |
| 23 | |
| 24 | CostFunctionManager::CostFunctionManager( ITableau *tableau ) |
| 25 | : _tableau( tableau ) |
| 26 | , _costFunction( NULL ) |
| 27 | , _basicCosts( NULL ) |
| 28 | , _multipliers( NULL ) |
| 29 | , _n( 0 ) |
| 30 | , _m( 0 ) |
| 31 | , _costFunctionStatus( COST_FUNCTION_INVALID ) |
| 32 | , _ANColumn( NULL ) |
| 33 | { |
| 34 | } |
| 35 | |
| 36 | CostFunctionManager::~CostFunctionManager() |
| 37 | { |
nothing calls this directly
no outgoing calls
no test coverage detected