From 3e338c3be65638ef1898c32c707c50422acafb18 Mon Sep 17 00:00:00 2001 From: ericmarin Date: Thu, 26 Mar 2026 20:28:38 +0100 Subject: added LICENSE --- examples/xor/xor_argmax.vnnlib | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 examples/xor/xor_argmax.vnnlib (limited to 'examples/xor/xor_argmax.vnnlib') diff --git a/examples/xor/xor_argmax.vnnlib b/examples/xor/xor_argmax.vnnlib new file mode 100644 index 0000000..d38bc31 --- /dev/null +++ b/examples/xor/xor_argmax.vnnlib @@ -0,0 +1,14 @@ +; Argmax Equivalence for XOR + +; 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 0 or 1 +(assert (or (= X_0 0) (= X_0 1))) +(assert (or (= X_1 0) (= X_1 1))) + +; Violation of argmax equivalence +(assert (not (= (> Y_0 0.5) (> Y_1 0.5)))) -- cgit v1.2.3