- Set AllUpdatableIdentifiers
AllUpdatableIdentifiers
The predefined set AllUpdatableIdentifiers contains the names of the
identifiers that are, in principle, updatable.
Set AllUpdatableIdentifiers {
SubsetOf : AllIdentifiers;
Index : IndexUpdatableIdentifiers;
InitialData : {
( AllSets - AllDefinedSets ) +
( AllParameters - AllDefinedParameters )
}
}
Definition
The set
AllUpdatableIdentifierscontains the names of the model identifiers that are, in principle, considered updatable by AIMMS.
Updatability
The contents of
AllUpdatableIdentifierscan be modified programmatically from within an AIMMS model. The set cannot be updated from within the end-user interface.
Note
The set
AllUpdatableIdentifiersdetermines which identifiers are updatable in principle. Which identifiers inAllUpdatableIdentifierscan actually be modified within the graphical end-user interface is determined by the setCurrentInputs.By default, variables are considered not updatable by AIMMS. If you want to allow your end-users to update some or all variables from within the end-user interface, you can accomplish this by adding these variables to both the sets
AllUpdatableIdentifiersandCurrentInputs.
See also
The sets AllIdentifiers, CurrentInputs.