about summary refs log tree commit diff homepage
path: root/lib/SMT/main.cpp
blob: 4d2b8e0acbdbecadef30ce220b45803071d2ed08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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();
}