File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -836,13 +836,13 @@ Comparison: is the first argument equal to the second?
836
836
~~~
837
837
838
838
839
- ### KEQUAL.neq
839
+ ### KEQUAL.ne
840
840
841
841
Comparison: is the first argument inequal to the second?
842
842
843
843
~~~
844
844
hooked-symbol neq{}(Item{}, Item{}) : Bool{}
845
- [hook{}("KEQUAL.neq ")]
845
+ [hook{}("KEQUAL.ne ")]
846
846
~~~
847
847
848
848
### KEQUAL.ite
Original file line number Diff line number Diff line change 100
100
8 . [ SET.list2set] ( #implementation-hooks-set-list2set )
101
101
7 . [ KEQUAL] ( #implementation-hooks-kequal )
102
102
1 . [ KEQUAL.eq] ( #implementation-hooks-kequal-eq )
103
- 2 . [ KEQUAL.neq ] ( #implementation-hooks-kequal-neq )
103
+ 2 . [ KEQUAL.ne ] ( #implementation-hooks-kequal-neq )
104
104
3 . [ KEQUAL.ite] ( #implementation-hooks-kequal-ite )
105
105
8 . [ KRYPTO] ( #implementation-hooks-krypto )
106
106
1 . [ KRYPTO.keccak256] ( #implementation-hooks-krypto-keccak266 )
Original file line number Diff line number Diff line change @@ -122,10 +122,10 @@ symbolVerifiers =
122
122
++ " in KEQUAL.ite"
123
123
)
124
124
125
- {- | @builtinFunctions@ defines the hooks for @KEQUAL.eq@, @KEQUAL.neq @, and
125
+ {- | @builtinFunctions@ defines the hooks for @KEQUAL.eq@, @KEQUAL.ne @, and
126
126
@KEQUAL.ite@.
127
127
128
- @KEQUAL.eq@ and @KEQUAL.neq @ can take arbitrary terms (of the same sort) and
128
+ @KEQUAL.eq@ and @KEQUAL.ne @ can take arbitrary terms (of the same sort) and
129
129
check whether they are equal or not, producing a builtin boolean value.
130
130
131
131
@KEQUAL.ite@ can take a boolean expression and two arbitrary terms (of the same
@@ -198,7 +198,7 @@ eqKey :: IsString s => s
198
198
eqKey = " KEQUAL.eq"
199
199
200
200
neqKey :: IsString s => s
201
- neqKey = " KEQUAL.neq "
201
+ neqKey = " KEQUAL.ne "
202
202
203
203
iteKey :: IsString s => s
204
204
iteKey = " KEQUAL.ite"
Original file line number Diff line number Diff line change @@ -316,7 +316,7 @@ comparisonKSymbol name = comparisonSymbol name kSort
316
316
keqBoolSymbol :: Internal. Symbol
317
317
keqBoolSymbol = comparisonKSymbol " keqBool" & hook " KEQUAL.eq"
318
318
kneqBoolSymbol :: Internal. Symbol
319
- kneqBoolSymbol = comparisonKSymbol " kneqBool" & hook " KEQUAL.neq "
319
+ kneqBoolSymbol = comparisonKSymbol " kneqBool" & hook " KEQUAL.ne "
320
320
kiteKSymbol :: Internal. Symbol
321
321
kiteKSymbol =
322
322
builtinSymbol " kiteK" kSort [boolSort, kSort, kSort]
You can’t perform that action at this time.
0 commit comments