- Set AllProcedures
AllProcedures
The predefined set AllProcedures
contains the names of all
procedures defined within an AIMMS model.
Set AllProcedures {
SubsetOf : AllIdentifiers;
Index : IndexProcedures;
}
Definition
The contents of the set
AllProcedures
is the collection of all procedure names defined within a particular model.
Updatability
The contents of the set can only be modified by adding or deleting procedures in the Model Explorer.
Note
Elements of the set AllProcedures
are typically used in conjunction
with the APPLY
statement, to allow data-driven procedural execution.
See also
- The sets
AllIdentifiers
. Procedures are discussed in Internal Procedures of the Language Reference, the
APPLY
statement in The APPLY Operator.