This PR adds infrastructure necessary for supporting `Nat` in the cutsat procedure. It also makes the `grind` more robust.
17 lines
475 B
Text
17 lines
475 B
Text
/-
|
|
Copyright (c) 2016 Microsoft Corporation. All rights reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
Authors: Leonardo de Moura
|
|
-/
|
|
prelude
|
|
import Init.Data.Int.Basic
|
|
import Init.Data.Int.Bitwise
|
|
import Init.Data.Int.DivMod
|
|
import Init.Data.Int.Gcd
|
|
import Init.Data.Int.Lemmas
|
|
import Init.Data.Int.LemmasAux
|
|
import Init.Data.Int.Order
|
|
import Init.Data.Int.Pow
|
|
import Init.Data.Int.Cooper
|
|
import Init.Data.Int.Linear
|
|
import Init.Data.Int.OfNat
|