Next topic

deduceEdgeState

This Page

__init__

Process.__init__(runNodeUpdate=True, runEdgeUpdate=True, runNetworkUpdate=True, constantTopology=False)
Parameters :

runNodeUpdate : bool, optional

If set True the simulation will execute nodeUpdateRule for each node in each iteration. If false the update will be skipped. Default value: True

runEdgeUpdate : bool, optional

If set True the simulation will execute edgeUpdateRule for each edge in each iteration. If false the update will be skipped. Default value: True

runNetworkUpdate : bool, optional

If set True the simulation will execute meanFieldUpdateRule for in each iteration. If false the update will be skipped. Default value: True

constantTopology : bool, optional

If set to True this indicates to the simulation that the network topology remains unchanged between iterations, and indicates to the Simulation that it may optimize by not running some undefined updates. If set to false a full topology copy will be performed and this also overrides any run[Node/Edge/Network]Update flags set to False, forcing the updates. Default value: False