| 193 | } |
| 194 | |
| 195 | unsigned AcasParser::getBVariable( unsigned layer, unsigned index ) const |
| 196 | { |
| 197 | NodeIndex nodeIndex( layer, index ); |
| 198 | if ( !_nodeToB.exists( nodeIndex ) ) |
| 199 | throw InputParserError( InputParserError::VARIABLE_INDEX_OUT_OF_RANGE ); |
| 200 | |
| 201 | return _nodeToB.get( nodeIndex ); |
| 202 | } |
| 203 | |
| 204 | unsigned AcasParser::getFVariable( unsigned layer, unsigned index ) const |
| 205 | { |
nothing calls this directly
no test coverage detected