Menu

Trigger

Syntax

Help
triggers:
    before_solve:
        - function_1
        - function_2
    after_solve:
        - function_3

Conditions

trigger is a way of saying:
"Trigger this first and then this and so on".

before_solve follow by the functions you want to trigger before solving the model:
"Before solving the model execute this function".

after_solve is a way of saying:
"After solving the model execute this function".

Menu