This PR tries to improve the E-matching pattern inference for `grind`. That said, we still need better tools for annotating and maintaining `grind` annotations in libraries. closes #9125
26 lines
788 B
Text
26 lines
788 B
Text
/-
|
|
Copyright (c) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
Authors: Leonardo de Moura
|
|
-/
|
|
module
|
|
|
|
prelude
|
|
public import Init.Grind.Norm
|
|
public import Init.Grind.Tactics
|
|
public import Init.Grind.Lemmas
|
|
public import Init.Grind.Cases
|
|
public import Init.Grind.Propagator
|
|
public import Init.Grind.Util
|
|
public import Init.Grind.Offset
|
|
public import Init.Grind.PP
|
|
public import Init.Grind.Ring
|
|
public import Init.Grind.Module
|
|
public import Init.Grind.Ordered
|
|
public import Init.Grind.Ext
|
|
public import Init.Grind.ToInt
|
|
public import Init.Grind.ToIntLemmas
|
|
public import Init.Grind.Attr
|
|
public import Init.Data.Int.OfNat -- This may not have otherwise been imported, breaking `grind` proofs.
|
|
|
|
public section
|