| 18 | #include "MarabouError.h" |
| 19 | |
| 20 | TableauRow::TableauRow( unsigned size ) |
| 21 | : _size( size ) |
| 22 | { |
| 23 | _row = new TableauRow::Entry[size]; |
| 24 | if ( !_row ) |
| 25 | throw MarabouError( MarabouError::ALLOCATION_FAILED, "TableauRow::row" ); |
| 26 | } |
| 27 | |
| 28 | TableauRow::~TableauRow() |
| 29 | { |
nothing calls this directly
no test coverage detected