mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 03:05:31 -05:00
fix(base/form): fix CNF for equiv
This commit is contained in:
parent
fd39a414c3
commit
c9127c6cd7
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ let view (t : T.t) : T.t view =
|
|||
| E_const { Const.c_view = T.C_false; _ }, [] -> B_bool false
|
||||
| E_const { Const.c_view = T.C_not; _ }, [ a ] -> B_not a
|
||||
| E_const { Const.c_view = T.C_eq; _ }, [ _ty; a; b ] ->
|
||||
if Ty.is_bool a then
|
||||
if Ty.is_bool (Term.ty a) then
|
||||
B_equiv (a, b)
|
||||
else
|
||||
B_eq (a, b)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue