{- ============================== Copyright (c) 2024 SysFEAT - Systemic Framework for Enterprise Architecture & Transformation This work is released under the MIT License. framework.sysfeat.com Elementary Block: An Elementary Block is a Building Block which doesnt have an internal structure. - ============================== -} {-# OPTIONS --cubical --guardedness #-} {-# OPTIONS --cubical-compatible #-} module 23d5c5fc685142de where -- ========== Elementary Block open import Agda.Primitive open import Relation.Binary.PropositionalEquality open import Data.Product renaming (_×_ to _⊗_) open import 23d5a9ea68513ced public -- Building Block postulate ElementaryBlock : ∀ {u} → ClassOfMixedOrderEntity u postulate -- ElementaryBlock is subTypeOf BuildingBlock st-23d5ead368515560 : ∀ {u} → (ElementaryBlock {u}) ⊏⋆ₑ (BuildingBlock {u}) -- == Relationships =======================