summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2018-11-25 11:27:39 +0100
committerHelmut Grohne <helmut@subdivi.de>2018-11-25 11:27:39 +0100
commit7fcd0fde85d545abbdae2265e173650c12d9b4c2 (patch)
tree5490945ebe8403ed6db0e27720d613767747081d
parenta1f5d673583c353eee32af83c78983aa22527e0a (diff)
downloadbidiragda-7fcd0fde85d545abbdae2265e173650c12d9b4c2.tar.gz
remove unused imports
These will happen to break with later agda-stdlib releases.
-rw-r--r--CheckInsert.agda1
-rw-r--r--FinMap.agda1
2 files changed, 0 insertions, 2 deletions
diff --git a/CheckInsert.agda b/CheckInsert.agda
index 6a1300b..9447b04 100644
--- a/CheckInsert.agda
+++ b/CheckInsert.agda
@@ -8,7 +8,6 @@ open import Data.Fin using (Fin)
open import Data.Fin.Properties using (_≟_)
open import Data.Maybe using (Maybe ; nothing ; just) renaming (setoid to MaybeSetoid ; Eq to MaybeEq)
open import Data.Vec using (Vec) renaming (_∷_ to _∷V_)
-open import Data.Vec.Equality using () renaming (module Equality to VecEq)
open import Data.Vec.Properties using (lookup∘update′)
open import Relation.Nullary using (Dec ; yes ; no ; ¬_)
open import Relation.Nullary.Negation using (contradiction)
diff --git a/FinMap.agda b/FinMap.agda
index 57d3ecf..7380b71 100644
--- a/FinMap.agda
+++ b/FinMap.agda
@@ -6,7 +6,6 @@ open import Data.Maybe using (Maybe ; just ; nothing ; maybe′)
open import Data.Fin using (Fin ; zero ; suc)
open import Data.Fin.Properties using (_≟_)
open import Data.Vec using (Vec ; [] ; _∷_ ; _[_]≔_ ; replicate ; tabulate ; foldr ; zip ; toList) renaming (lookup to lookupVec ; map to mapV)
-open import Data.Vec.Equality using ()
open import Data.Vec.Properties using (lookup∘update ; lookup∘update′)
open import Data.Product using (_×_ ; _,_)
open import Data.List.All as All using (All)