summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormakaimann <makaim@stanford.edu>2019-04-01 13:22:04 -0700
committerAndres Noetzli <andres.noetzli@gmail.com>2019-04-01 13:22:04 -0700
commitae536749a2342e51c450deb62a13d5cfda965881 (patch)
tree4443235fd058fdfc47426aa704a460b1ddf810a5
parentfe18be6fe6ac58bf6ccdb1ca18c7fae2de881aaa (diff)
Update includes to use cvc4 top-level directory in examples (#2877)
Because the headers are now installed in a `cvc4` directory, the examples need to include from there as well.
-rw-r--r--examples/api/bitvectors-new.cpp2
-rw-r--r--examples/api/bitvectors_and_arrays-new.cpp3
-rw-r--r--examples/api/combination-new.cpp2
-rw-r--r--examples/api/datatypes-new.cpp3
-rw-r--r--examples/api/extract-new.cpp2
-rw-r--r--examples/api/helloworld-new.cpp2
-rw-r--r--examples/api/linear_arith-new.cpp2
-rw-r--r--examples/api/sets-new.cpp2
-rw-r--r--examples/api/strings-new.cpp2
9 files changed, 11 insertions, 9 deletions
diff --git a/examples/api/bitvectors-new.cpp b/examples/api/bitvectors-new.cpp
index d06671a0d..dfe8c7420 100644
--- a/examples/api/bitvectors-new.cpp
+++ b/examples/api/bitvectors-new.cpp
@@ -16,7 +16,7 @@
#include <iostream>
-//#include <cvc4/cvc4.h> // use this after CVC4 is properly installed
+// #include "cvc4/api/cvc4cpp.h" // use this after CVC4 is properly installed
#include "api/cvc4cpp.h"
using namespace std;
diff --git a/examples/api/bitvectors_and_arrays-new.cpp b/examples/api/bitvectors_and_arrays-new.cpp
index 723f5e178..2abc5f9b4 100644
--- a/examples/api/bitvectors_and_arrays-new.cpp
+++ b/examples/api/bitvectors_and_arrays-new.cpp
@@ -16,7 +16,8 @@
#include <iostream>
#include <cmath>
-// #include <cvc4/cvc4.h> // use this after CVC4 is properly installed
+
+// #include "cvc4/api/cvc4cpp.h" // use this after CVC4 is properly installed
#include "api/cvc4cpp.h"
using namespace std;
diff --git a/examples/api/combination-new.cpp b/examples/api/combination-new.cpp
index 4c2df3624..de898352e 100644
--- a/examples/api/combination-new.cpp
+++ b/examples/api/combination-new.cpp
@@ -18,7 +18,7 @@
#include <iostream>
-//#include <cvc4/cvc4.h> // use this after CVC4 is properly installed
+// #include "cvc4/api/cvc4cpp.h" // use this after CVC4 is properly installed
#include "api/cvc4cpp.h"
using namespace std;
diff --git a/examples/api/datatypes-new.cpp b/examples/api/datatypes-new.cpp
index e6e044c96..6efb1f7fc 100644
--- a/examples/api/datatypes-new.cpp
+++ b/examples/api/datatypes-new.cpp
@@ -15,9 +15,10 @@
**/
#include <iostream>
-//#include <cvc4/cvc4.h> // To follow the wiki
+// #include "cvc4/api/cvc4cpp.h" // use this after CVC4 is properly installed
#include "api/cvc4cpp.h"
+
using namespace CVC4::api;
void test(Solver& slv, Sort& consListSort)
diff --git a/examples/api/extract-new.cpp b/examples/api/extract-new.cpp
index f020b4951..7d9f2771f 100644
--- a/examples/api/extract-new.cpp
+++ b/examples/api/extract-new.cpp
@@ -16,7 +16,7 @@
#include <iostream>
-//#include <cvc4/cvc4.h> // use this after CVC4 is properly installed
+// #include "cvc4/api/cvc4cpp.h" // use this after CVC4 is properly installed
#include "api/cvc4cpp.h"
using namespace std;
diff --git a/examples/api/helloworld-new.cpp b/examples/api/helloworld-new.cpp
index 144b307f7..307b1638a 100644
--- a/examples/api/helloworld-new.cpp
+++ b/examples/api/helloworld-new.cpp
@@ -16,7 +16,7 @@
#include <iostream>
-//#include <cvc4/cvc4.h> // use this after CVC4 is properly installed
+// #include "cvc4/api/cvc4cpp.h" // use this after CVC4 is properly installed
#include "api/cvc4cpp.h"
using namespace CVC4::api;
diff --git a/examples/api/linear_arith-new.cpp b/examples/api/linear_arith-new.cpp
index 8f305c72d..359c12964 100644
--- a/examples/api/linear_arith-new.cpp
+++ b/examples/api/linear_arith-new.cpp
@@ -17,7 +17,7 @@
#include <iostream>
-//#include <cvc4/cvc4.h> // use this after CVC4 is properly installed
+// #include "cvc4/api/cvc4cpp.h" // use this after CVC4 is properly installed
#include "api/cvc4cpp.h"
using namespace std;
diff --git a/examples/api/sets-new.cpp b/examples/api/sets-new.cpp
index d4b94aa8f..94ce9d9a8 100644
--- a/examples/api/sets-new.cpp
+++ b/examples/api/sets-new.cpp
@@ -16,7 +16,7 @@
#include <iostream>
-//#include <cvc4/cvc4.h> // use this after CVC4 is properly installed
+// #include "cvc4/api/cvc4cpp.h" // use this after CVC4 is properly installed
#include "api/cvc4cpp.h"
using namespace std;
diff --git a/examples/api/strings-new.cpp b/examples/api/strings-new.cpp
index e3bcb1677..432ee7b80 100644
--- a/examples/api/strings-new.cpp
+++ b/examples/api/strings-new.cpp
@@ -16,7 +16,7 @@
#include <iostream>
-//#include <cvc4/cvc4.h> // use this after CVC4 is properly installed
+// #include "cvc4/api/cvc4cpp.h" // use this after CVC4 is properly installed
#include "api/cvc4cpp.h"
using namespace CVC4::api;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback