summaryrefslogtreecommitdiff
path: root/BFFPlug.agda
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2018-11-25 11:29:53 +0100
committerHelmut Grohne <helmut@subdivi.de>2018-11-25 11:29:53 +0100
commit25d4df9182c92ef26979566f06c7c9f17746f0fb (patch)
tree9fb198f637098799730a4f2fd1f30afcfe8182e1 /BFFPlug.agda
parent7fcd0fde85d545abbdae2265e173650c12d9b4c2 (diff)
downloadbidiragda-25d4df9182c92ef26979566f06c7c9f17746f0fb.tar.gz
port to agda/2.5.4.1 and agda-stdlib/0.17
Diffstat (limited to 'BFFPlug.agda')
-rw-r--r--BFFPlug.agda3
1 files changed, 2 insertions, 1 deletions
diff --git a/BFFPlug.agda b/BFFPlug.agda
index 4992a3e..48171be 100644
--- a/BFFPlug.agda
+++ b/BFFPlug.agda
@@ -5,6 +5,7 @@ module BFFPlug (A : DecSetoid ℓ₀ ℓ₀) where
open import Data.Nat using (ℕ ; _≟_ ; _+_ ; zero ; suc ; ⌈_/2⌉)
open import Data.Maybe using (Maybe ; just ; nothing)
+import Data.Maybe.Categorical
open import Data.Vec using (Vec)
open import Data.Product using (∃ ; _,_)
open import Relation.Binary using (module DecSetoid)
@@ -13,7 +14,7 @@ open import Relation.Nullary using (yes ; no)
open import Function using (flip ; id ; _∘_)
open import Function.LeftInverse using (_RightInverseOf_)
import Category.Monad
-open Category.Monad.RawMonad {ℓ₀} Data.Maybe.monad using (_>>=_)
+open Category.Monad.RawMonad {ℓ₀} Data.Maybe.Categorical.monad using (_>>=_)
open import Generic using (sequenceV ; ≡-to-Π)
import BFF