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

Class InputParserError

src/input_parsers/InputParserError.h:21–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19#include "Error.h"
20
21class InputParserError : public Error
22{
23public:
24 enum Code {
25 VARIABLE_INDEX_OUT_OF_RANGE = 0,
26 UNEXPECTED_INPUT = 1,
27 FILE_DOESNT_EXIST = 2,
28 UNSUPPORTED_BOUND_TYPE = 3,
29 NETWORK_LEVEL_REASONING_DISABLED = 4,
30 HIDDEN_VARIABLE_DOESNT_EXIST_IN_NLR = 5,
31 };
32
33 InputParserError( InputParserError::Code code )
34 : Error( "InputParserError", (int)code )
35 {
36 }
37
38 InputParserError( InputParserError::Code code, const char *userMessage )
39 : Error( "InputParserError", (int)code, userMessage )
40 {
41 }
42};
43
44#endif // __InputParserError_h__
45

Callers 15

getBVariableMethod · 0.85
getFVariableMethod · 0.85
load_networkFunction · 0.85
extractScalarFunction · 0.85
parseMethod · 0.85
processSingleLineMethod · 0.85
extractRelationSymbolMethod · 0.85
parseMethod · 0.85
parseRowMethod · 0.85
parseColumnMethod · 0.85
parseRhsMethod · 0.85
parseBoundsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected