aboutsummaryrefslogtreecommitdiff
path: root/examples/tll/tll_epsilon.vnnlib
diff options
context:
space:
mode:
Diffstat (limited to 'examples/tll/tll_epsilon.vnnlib')
-rw-r--r--examples/tll/tll_epsilon.vnnlib17
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/tll/tll_epsilon.vnnlib b/examples/tll/tll_epsilon.vnnlib
new file mode 100644
index 0000000..8e0902d
--- /dev/null
+++ b/examples/tll/tll_epsilon.vnnlib
@@ -0,0 +1,17 @@
+; Strict Equivalence for TLL
+
+; Constant declaration
+(declare-const X_0 Real)
+(declare-const X_1 Real)
+(declare-const Y_0 Real)
+(declare-const Y_1 Real)
+
+; Bounded inputs: X must be within [0, 1]
+(assert (>= X_0 0.0))
+(assert (<= X_0 1.0))
+(assert (>= X_1 0.0))
+(assert (<= X_1 1.0))
+
+; Violation of epsilon equivalence (epsilon = 0.1)
+(define-fun absolute ((x Real)) Real (if (>= x 0) x (- x)))
+(assert (> (absolute (- Y_0 Y_1)) 0.1))