2015-08-12 22:05:14 +00:00
|
|
|
import data.examples.vector
|
2015-03-14 06:04:45 +00:00
|
|
|
open vector nat decidable
|
|
|
|
|
|
|
|
variable A : Type
|
|
|
|
|
|
|
|
definition foo [H : decidable_eq A] : ∀ {n : nat} (v₁ v₂ : vector A n), decidable (v₁ = v₂)
|
|
|
|
| ⌞0⌟ [] [] := sorry
|
|
|
|
| ⌞n+1⌟ (a::v₁) (b::v₂) := sorry
|