diff options
author | Helmut Grohne <helmut@subdivi.de> | 2018-11-25 11:29:53 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2018-11-25 11:29:53 +0100 |
commit | 25d4df9182c92ef26979566f06c7c9f17746f0fb (patch) | |
tree | 9fb198f637098799730a4f2fd1f30afcfe8182e1 /BFFPlug.agda | |
parent | 7fcd0fde85d545abbdae2265e173650c12d9b4c2 (diff) | |
download | bidiragda-25d4df9182c92ef26979566f06c7c9f17746f0fb.tar.gz |
port to agda/2.5.4.1 and agda-stdlib/0.17
Diffstat (limited to 'BFFPlug.agda')
-rw-r--r-- | BFFPlug.agda | 3 |
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 |