mirror of
https://github.com/AdaCore/cvc5.git
synced 2026-02-12 12:32:16 -08:00
This PR adds the proper checks for the parser API. It furthermore adds examples and unit tests for the parser API. Note that InputParser::nextCommand and InputParser::nextTerm don't catch exceptions, since we want to throw ParserExceptions containing the parsing information, not API exceptions. Also, at the moment, the InputParser can throw an exception during initialization, which is not caught either.
66 lines
2.1 KiB
C++
66 lines
2.1 KiB
C++
/******************************************************************************
|
|
* Top contributors (to current version):
|
|
* Aina Niemetz, Morgan Deters, Gereon Kremer
|
|
*
|
|
* This file is part of the cvc5 project.
|
|
*
|
|
* Copyright (c) 2009-2023 by the authors listed in the file AUTHORS
|
|
* in the top-level source directory and their institutional affiliations.
|
|
* All rights reserved. See the file COPYING in the top-level source
|
|
* directory for licensing information.
|
|
* ****************************************************************************
|
|
*
|
|
* A test of SMT-LIBv2 commands, checks for compliant output.
|
|
*/
|
|
|
|
#include <cvc5/cvc5.h>
|
|
#include <cvc5/cvc5_parser.h>
|
|
|
|
#include <cassert>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
|
|
using namespace cvc5;
|
|
using namespace cvc5::internal;
|
|
using namespace cvc5::parser;
|
|
using namespace std;
|
|
|
|
void testGetInfo(cvc5::Solver* solver, const char* s);
|
|
|
|
int main()
|
|
{
|
|
std::unique_ptr<cvc5::Solver> solver = std::make_unique<cvc5::Solver>();
|
|
solver->setOption("input-language", "smtlib2");
|
|
solver->setOption("output-language", "smtlib2");
|
|
testGetInfo(solver.get(), ":error-behavior");
|
|
testGetInfo(solver.get(), ":name");
|
|
testGetInfo(solver.get(), ":authors");
|
|
testGetInfo(solver.get(), ":version");
|
|
testGetInfo(solver.get(), ":status");
|
|
testGetInfo(solver.get(), ":reason-unknown");
|
|
testGetInfo(solver.get(), ":arbitrary-undefined-keyword");
|
|
testGetInfo(solver.get(), ":<="); // legal
|
|
testGetInfo(solver.get(), ":->"); // legal
|
|
testGetInfo(solver.get(), ":all-statistics");
|
|
|
|
return 0;
|
|
}
|
|
|
|
void testGetInfo(cvc5::Solver* solver, const char* s)
|
|
{
|
|
std::unique_ptr<SymbolManager> symman(new SymbolManager(solver));
|
|
|
|
InputParser p(solver, symman.get());
|
|
std::stringstream ssi;
|
|
ssi << "(get-info " << s << ")";
|
|
p.setStreamInput(modes::InputLanguage::SMT_LIB_2_6, ssi, "<internal>");
|
|
Command c = p.nextCommand();
|
|
assert(!c.isNull());
|
|
std::cout << c << std::endl;
|
|
std::stringstream ss;
|
|
c.invoke(solver, symman.get(), ss);
|
|
c = p.nextCommand();
|
|
assert(c.isNull());
|
|
std::cout << ss.str() << std::endl << std::endl;
|
|
}
|