From 8f4f24523235965cfa2041ed00cc40fc0b4bd367 Mon Sep 17 00:00:00 2001 From: ericmarin Date: Fri, 10 Apr 2026 15:06:56 +0200 Subject: added MNIST, changed cache and parser --- examples/tll/tll_epsilon.vnnlib | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 examples/tll/tll_epsilon.vnnlib (limited to 'examples/tll/tll_epsilon.vnnlib') diff --git a/examples/tll/tll_epsilon.vnnlib b/examples/tll/tll_epsilon.vnnlib deleted file mode 100644 index 8e0902d..0000000 --- a/examples/tll/tll_epsilon.vnnlib +++ /dev/null @@ -1,17 +0,0 @@ -; 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)) -- cgit v1.2.3