SMT-RAT  24.02
Toolbox for Strategic and Parallel Satisfiability-Modulo-Theories Solving
ParserWrapper.cpp
Go to the documentation of this file.
1 #include "ParserWrapper.h"
2 
3 #include "Parser.h"
4 
5 namespace smtrat {
6  bool parseSMT2File(parser::InstructionHandler& handler, bool queueInstructions, std::istream& input) {
7  parser::SMTLIBParser parser(handler, queueInstructions);
8  return parser.parse(input);
9  }
10 }
bool parse(std::istream &in)
Definition: Parser.h:43
Class to create the formulas for axioms.
bool parseSMT2File(parser::InstructionHandler &handler, bool queueInstructions, std::istream &input)