{- ============================== Copyright (c) 2024 SysFEAT - Systemic Framework for Enterprise Architecture & Transformation This work is released under the MIT License. framework.sysfeat.com Power Class: A Power Class of a class A-denoted as P*(A)-is the class whose members are every possible subclass of A, including A itself and the empty class. - ============================== -} {-# OPTIONS --cubical --guardedness #-} {-# OPTIONS --cubical-compatible #-} module edc1f6b868f4546c where -- ========== Power Class open import Agda.Primitive open import Relation.Binary.PropositionalEquality open import Data.Product renaming (_×_ to _⊗_) open import 308c3b3868e9141e public -- Class of Mixed-Order Entity postulate PowerClass : ∀ {u} → MixedOrderMetaClass u postulate -- PowerClass is subTypeOf ClassOfMixedOrderEntity st-edc1079368f554e6 : ∀ {u} → (PowerClass {u}) ⊏⋆ₑ (ClassOfMixedOrderEntity u) -- == Relationships =======================