refactor(library): rbtree lemmas do not need to be in init folder
This commit is contained in:
parent
956f29cdb2
commit
65368a0c85
4 changed files with 10 additions and 7 deletions
6
library/data/rbtree/default.lean
Normal file
6
library/data/rbtree/default.lean
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
/-
|
||||
Copyright (c) 2017 Microsoft Corporation. All rights reserved.
|
||||
Released under Apache 2.0 license as described in the file LICENSE.
|
||||
Authors: Leonardo de Moura
|
||||
-/
|
||||
import data.rbtree.lemmas
|
||||
|
|
@ -1,11 +1,8 @@
|
|||
/-
|
||||
Copyright (c) 2017 Microsoft Corporation. All rights reserved.
|
||||
Released under Apache 2.0 license as described in the file LICENSE.
|
||||
Authors: Leonardo de Moura, Mario Carneiro
|
||||
Authors: Leonardo de Moura
|
||||
-/
|
||||
prelude
|
||||
import init.data.rbtree.basic init.meta init.data.nat
|
||||
|
||||
universes u v
|
||||
|
||||
/- TODO(Leo): remove after we cleanup stdlib simp lemmas -/
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
/-
|
||||
Copyright (c) 2017 Microsoft Corporation. All rights reserved.
|
||||
Released under Apache 2.0 license as described in the file LICENSE.
|
||||
Authors: Leonardo de Moura, Mario Carneiro
|
||||
Authors: Leonardo de Moura
|
||||
-/
|
||||
prelude
|
||||
import init.data.ordering
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
/-
|
||||
Copyright (c) 2017 Microsoft Corporation. All rights reserved.
|
||||
Released under Apache 2.0 license as described in the file LICENSE.
|
||||
Authors: Leonardo de Moura, Mario Carneiro
|
||||
Authors: Leonardo de Moura
|
||||
-/
|
||||
prelude
|
||||
import init.data.rbtree.basic init.data.rbtree.lemmas
|
||||
import init.data.rbtree.basic
|
||||
|
||||
meta def rbtree.default_lt : tactic unit :=
|
||||
`[apply has_lt.lt]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue