summaryrefslogtreecommitdiff
path: root/examples/simple_vc_compat_c.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/simple_vc_compat_c.c')
-rw-r--r--examples/simple_vc_compat_c.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/simple_vc_compat_c.c b/examples/simple_vc_compat_c.c
index 9bcb52280..f45df65f5 100644
--- a/examples/simple_vc_compat_c.c
+++ b/examples/simple_vc_compat_c.c
@@ -21,14 +21,14 @@
#include <stdio.h>
#include <stdlib.h>
-// #include <cvc4/compat/c_interface.h>
+/* #include <cvc4/compat/c_interface.h> /* use this after CVC4 is properly installed */
#include "bindings/compat/c/c_interface.h"
int main() {
VC vc = vc_createValidityChecker(NULL);
- // Prove that for integers x and y:
- // x > 0 AND y > 0 => 2x + y >= 3
+ /* Prove that for integers x and y:
+ * x > 0 AND y > 0 => 2x + y >= 3 */
Type integer = vc_intType(vc);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback