blob: d5137782e2e8e20080ace47c3ac092e4f4297869 (
plain) (
blame)
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 << "Query: " << smtParser.query << "\n";
}
|