aboutsummaryrefslogtreecommitdiff
path: root/Data/Hypergraph.agda
diff options
context:
space:
mode:
Diffstat (limited to 'Data/Hypergraph.agda')
-rw-r--r--Data/Hypergraph.agda14
1 files changed, 14 insertions, 0 deletions
diff --git a/Data/Hypergraph.agda b/Data/Hypergraph.agda
new file mode 100644
index 0000000..2e8498c
--- /dev/null
+++ b/Data/Hypergraph.agda
@@ -0,0 +1,14 @@
+{-# OPTIONS --without-K --safe #-}
+
+open import Level using (Level)
+
+open import Data.Hypergraph.Label using (HypergraphLabel)
+
+module Data.Hypergraph {c ℓ : Level} (HL : HypergraphLabel) where
+
+open import Data.Hypergraph.Base {c} HL public
+open import Data.Hypergraph.Setoid {c} {ℓ} HL public
+
+import Data.Hypergraph.Edge HL as HypergraphEdge
+
+module Edge = HypergraphEdge