Skip to content
Snippets Groups Projects
Commit 6fac2c54 authored by Eric Giovannini's avatar Eric Giovannini
Browse files

Addition to monotone combinators

parent 10dd7adf
No related branches found
No related tags found
No related merge requests found
......@@ -119,11 +119,7 @@ Case' f g = record {
Case : ⟨ (A ==> C) ==> (B ==> C) ==> ((A ⊎p B) ==> C) ⟩
Case = {!!}
-- Lifting a monotone function functorially
_~->_ : {A B C D : Poset ℓ ℓ'} ->
⟨ A ==> B ⟩ -> ⟨ C ==> D ⟩ -> ⟨ (B ==> C) ==> (A ==> D) ⟩
pre ~-> post = {!!}
-- λ f -> mCompU post (mCompU f pre)
......@@ -301,6 +297,12 @@ Comp : (Γ : Poset ℓ ℓ') -> {A B C : Poset ℓ ℓ'} ->
Comp Γ f g = {!!}
-- Lifting a monotone function functorially
_~->_ : {A B C D : Poset ℓ ℓ'} ->
⟨ A ==> B ⟩ -> ⟨ C ==> D ⟩ -> ⟨ (B ==> C) ==> (A ==> D) ⟩
pre ~-> post = Curry ((mCompU post App) ∘m (With2nd pre))
module ClockedCombinators (k : Clock) where
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment