Initializing help system before first use

problem.cascadeorder

problem.cascadeorder


Purpose
Establish a re-calculation sequence for SLP variables with determining rows.
Synopsis
problem.cascadeorder ()
Example
Assuming that all variables are SLP variables, the following example sets default values for the variables, creates the re-calculation order and then calls problem.cascade to calculate consistent values for the dependent variables.
for colnum in range (1, nCol):
  p.chgvar (colnum, None, None, None, None,
            None, None, [DefaultValue [ColNum]], None, None, None,
            None)
p.cascadeorder ()
p.cascade ()

Further information

cascadeorder is called automatically at the start of the SLP iteration process and so it is not normally necessary to perform an explicit cascade ordering.


Related topics