{- ============================== Copyright (c) 2024 SysFEAT - Systemic Framework for Enterprise Architecture & Transformation This work is released under the MIT License. framework.sysfeat.com Decision Outcome: A Decision Outcome is a possible value of a Decision Type, that will be selected during a decision-making process.For instance, when making decisions about invesment on an enterprise asset, the possible options are: eliminate, invest, migrate, tolerate. - ============================== -} {-# OPTIONS --cubical --guardedness #-} {-# OPTIONS --cubical-compatible #-} module 97e09cde68dd6c0f where -- ========== Decision Outcome open import Agda.Primitive open import Relation.Binary.PropositionalEquality open import Data.Product renaming (_×_ to _⊗_) open import 97e09afa68dd69f1 public -- Resolution Outcome open import 366c47e1675c1c07 public -- Decision Type postulate DecisionOutcome : PropertyType postulate -- DecisionOutcome is subTypeOf ResolutionOutcome st-83bb9fa061923c3f : DecisionOutcome ⊏⋆ₑ ResolutionOutcome -- == Relationships ======================= {- Decision Type: -} postulate -- Relation: Decision Type decisionType : classOfMixedOrderRelation DecisionOutcome DecisionType