We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cf91c3 commit 196526aCopy full SHA for 196526a
1 file changed
src/main/java/com/sri/yices/yicesJNIforWindows.cpp
@@ -21,7 +21,15 @@
21
#define YICES_AT_LEAST_2_6_2
22
#endif
23
24
+#if __YICES_VERSION > 2 || \
25
+ (__YICES_VERSION == 2 && (__YICES_VERSION_MAJOR > 6 || \
26
+ (__YICES_VERSION_MAJOR == 6 && \
27
+ __YICES_VERSION_PATCHLEVEL > 3)))
28
+#define YICES_AT_LEAST_2_6_4
29
+#endif
30
+
31
#define YICES_ERROR_REQUIRES_AT_LEAST_2_6_2 -262
32
+#define YICES_ERROR_REQUIRES_AT_LEAST_2_6_4 -264
33
34
/**
35
* Assumes that for each __YICES_VERSION __YICES_VERSION_MAJOR and __YICES_VERSION_PATCHLEVEL
0 commit comments