chore: add Simp.Config.arith option

This commit is contained in:
Leonardo de Moura 2022-02-25 16:30:44 -08:00
parent 3f636b9f83
commit 77dda12bc9

View file

@ -1008,6 +1008,7 @@ structure Config where
iota : Bool := true
proj : Bool := true
decide : Bool := true
arith : Bool := true
deriving Inhabited, BEq, Repr
-- Configuration object for `simp_all`
@ -1020,7 +1021,8 @@ def neutralConfig : Simp.Config :=
eta := false
iota := false
proj := false
decide := false }
decide := false
arith := false }
end Simp