Relation HAS-PARAMETER-SLOT


Slots on this relation:

Documentation:
A component has an parameter if the parameter value is given by a unary function, called an parameter-slot, that is defined for that component. Calling a slot an parameter-slot means that it is a design parameter: it will need to be assigned a value and may be mentioned in constraints. The parameter slot must have a value.
Instance-Of: Relation
Arity: 2
Domain: Component
Range: Parameter-slot

Other Related Axioms:

(=> (Has-Parameter-Slot $X $Y) (Parameter-Slot $Y))

(=> (Has-Parameter-Slot $X $Y) (Component $X))

(=> (Has-Parameter-Slot ?Component ?Parameter-Slot)
    (Value-Cardinality ?Component ?Parameter-Slot 1))

(<=> (Parameter-Slot-Of $Arg1 $Arg2)
     (Has-Parameter-Slot $Arg2 $Arg1))

(Inverse Parameter-Slot-Of Has-Parameter-Slot)


Notes: