refactor(library/logic/wf): minimize dependencies
This commit is contained in:
parent
b177c84b06
commit
194247f75b
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
-- Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
-- Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
||||||
-- Released under Apache 2.0 license as described in the file LICENSE.
|
-- Released under Apache 2.0 license as described in the file LICENSE.
|
||||||
-- Author: Leonardo de Moura
|
-- Author: Leonardo de Moura
|
||||||
import logic
|
import logic.eq
|
||||||
|
|
||||||
inductive acc {A : Type} (R : A → A → Prop) : A → Prop :=
|
inductive acc {A : Type} (R : A → A → Prop) : A → Prop :=
|
||||||
intro : ∀x, (∀ y, R y x → acc R y) → acc R x
|
intro : ∀x, (∀ y, R y x → acc R y) → acc R x
|
||||||
|
|
Loading…
Reference in a new issue