MCPcopy Create free account
hub / github.com/NeuralNetworkVerification/Marabou / TableauRow

Method TableauRow

src/engine/TableauRow.cpp:20–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18#include "MarabouError.h"
19
20TableauRow::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
28TableauRow::~TableauRow()
29{

Callers

nothing calls this directly

Calls 1

MarabouErrorClass · 0.85

Tested by

no test coverage detected