aboutsummaryrefslogtreecommitdiff
path: root/Data/System.agda
diff options
context:
space:
mode:
authorJacques Comeaux <jacquesrcomeaux@protonmail.com>2026-07-13 16:06:43 -0700
committerJacques Comeaux <jacquesrcomeaux@protonmail.com>2026-07-13 16:06:43 -0700
commit9e2f3f3bb9916dca8d4ad4b162ce5b089c26b82e (patch)
treec09ddc07193cc214557979ce160dfd64ee154e6c /Data/System.agda
parentcdcf0ebd6432799f6b7a3656437fb01d1ff79966 (diff)
Construct Sys functor from wiring diagrams to Cats
Diffstat (limited to 'Data/System.agda')
-rw-r--r--Data/System.agda10
1 files changed, 5 insertions, 5 deletions
diff --git a/Data/System.agda b/Data/System.agda
index 968332d..7b6fe06 100644
--- a/Data/System.agda
+++ b/Data/System.agda
@@ -2,9 +2,9 @@
open import Level using (Level)
-module Data.System {ℓ : Level} where
+module Data.System {c ℓ : Level} where
-open import Data.System.Core {ℓ} public
-open import Data.System.Category {ℓ} public
-open import Data.System.Looped {ℓ} public
-open import Data.System.Monoidal {ℓ} public using (Systems-MC; Systems-SMC)
+open import Data.System.Core {c} {ℓ} public
+open import Data.System.Category {c} {ℓ} public
+open import Data.System.Looped {c} {ℓ} public
+open import Data.System.Monoidal {c} {ℓ} public using (Systems-MC; Systems-SMC)