Files
cvc5/test/api/cpp/smt2_compliance.cpp
Mathias Preiner 56e14c4639 Move public headers into top-level include directory. (#9555)
This PR moves the public API headers into a top-level include directory. This makes it easier to find the public API of cvc5 and makes the install headers script obsolete.

Fixes #9553
Fixes #9556
2023-03-07 23:39:29 +00:00

70 lines
2.2 KiB
C++

/******************************************************************************
* Top contributors (to current version):
* Aina Niemetz, Morgan Deters, Gereon Kremer
*
* This file is part of the cvc5 project.
*
* Copyright (c) 2009-2022 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 <cassert>
#include <iostream>
#include <sstream>
#include "parser/api/cpp/command.h"
#include "parser/parser_antlr.h"
#include "parser/parser_builder.h"
#include "smt/solver_engine.h"
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(), ":56"); // legal
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));
std::unique_ptr<Parser> p(ParserBuilder(solver, symman.get(), true).build());
p->setInput(Input::newStringInput(
"LANG_SMTLIB_V2_6", string("(get-info ") + s + ")", "<internal>"));
assert(p != NULL);
std::unique_ptr<Command> c = p->nextCommand();
assert(c != NULL);
cout << c.get() << endl;
stringstream ss;
c->invoke(solver, symman.get(), ss);
assert(p->nextCommand() == NULL);
cout << ss.str() << endl << endl;
}