diff options
author | Helmut Grohne <helmut@subdivi.de> | 2020-08-01 09:12:17 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2020-08-01 09:12:17 +0200 |
commit | 1286deef698a9fbf92b86d0078fd62c47f980ee9 (patch) | |
tree | cf70314c5e62c774c225db342ec0c4bae3fd493d /Generic.agda | |
parent | 85865ec3c7c3e3a458dc233d4c28e4db97191f3d (diff) | |
download | bidiragda-1286deef698a9fbf92b86d0078fd62c47f980ee9.tar.gz |
move imports for agda-stdlib 1.3
Diffstat (limited to 'Generic.agda')
-rw-r--r-- | Generic.agda | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Generic.agda b/Generic.agda index ed9d4a4..bac09d8 100644 --- a/Generic.agda +++ b/Generic.agda @@ -9,7 +9,7 @@ open import Data.Maybe.Relation.Binary.Pointwise using (just ; nothing) renaming open import Data.Nat using (ℕ ; zero ; suc) open import Data.Product using (_×_ ; _,_) open import Data.Vec using (Vec ; toList ; fromList ; map) renaming ([] to []V ; _∷_ to _∷V_) -import Data.Vec.Relation.Pointwise.Inductive as VecEq +import Data.Vec.Relation.Binary.Pointwise.Inductive as VecEq open import Data.Vec.Properties using (map-cong) open import Function using (_∘_ ; id ; flip) open import Function.Equality using (_⟶_) |