1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#include "SMTParser.h" #include <iostream> using namespace std; int main(int argc, char** argv) { if (argc != 2) { cout << "Usage: " << argv[0] << " <smt-filename>\n"; return 1; } klee::expr::SMTParser smtParser(argv[1]); smtParser.Init(); cout << smtParser.query << "\n"; }