aboutsummaryrefslogtreecommitdiff
path: root/examples/ACASXU/ACASXU_argmax.vnnlib
blob: 3009eefdd91a4553f618f9ff8440da56911e538e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
; Argmax Equivalence for ACASXU

; Constant declaration
(declare-const X_0 Real)
(declare-const X_1 Real)
(declare-const X_2 Real)
(declare-const X_3 Real)
(declare-const X_4 Real)
(declare-const Y_0 Real)
(declare-const Y_1 Real)
(declare-const Y_2 Real)
(declare-const Y_3 Real)
(declare-const Y_4 Real)
(declare-const Y_5 Real)
(declare-const Y_6 Real)
(declare-const Y_7 Real)
(declare-const Y_8 Real)
(declare-const Y_9 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))
(assert (>= X_2 0.0))
(assert (<= X_2 1.0))
(assert (>= X_3 0.0))
(assert (<= X_3 1.0))
(assert (>= X_4 0.0))
(assert (<= X_4 1.0))

; Violation of argmax equivalence
(assert (or
  (and 
    (> Y_0 Y_1)
    (> Y_0 Y_2)
    (> Y_0 Y_3)
    (> Y_0 Y_4)
    (or
      (> Y_6 Y_5)
      (> Y_7 Y_5)
      (> Y_8 Y_5)
      (> Y_9 Y_5)
    )
  )
  (and 
    (> Y_1 Y_0)
    (> Y_1 Y_2)
    (> Y_1 Y_3)
    (> Y_1 Y_4)
    (or
      (> Y_5 Y_6)
      (> Y_7 Y_6)
      (> Y_8 Y_6)
      (> Y_9 Y_6)
    )
  )
  (and 
    (> Y_2 Y_0)
    (> Y_2 Y_1)
    (> Y_2 Y_3)
    (> Y_2 Y_4)
    (or
      (> Y_5 Y_7)
      (> Y_6 Y_7)
      (> Y_8 Y_7)
      (> Y_9 Y_7)
    )
  )
  (and 
    (> Y_3 Y_0)
    (> Y_3 Y_1)
    (> Y_3 Y_2)
    (> Y_3 Y_4)
    (or
      (> Y_5 Y_8)
      (> Y_6 Y_8)
      (> Y_7 Y_8)
      (> Y_9 Y_8)
    )
  )
  (and 
    (> Y_4 Y_0)
    (> Y_4 Y_1)
    (> Y_4 Y_2)
    (> Y_4 Y_3)
    (or
      (> Y_5 Y_9)
      (> Y_6 Y_9)
      (> Y_7 Y_9)
      (> Y_8 Y_9)
    )
  )
))