Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odgovori
4921 Prikazi

Given an object with multiple function fields, what is the computation order, or is it arbitary?

If it is arbitrary, should the developer pay extra attention and avoid using function field values within the other function fields of the same object?

Avatar
Opusti
Avtor Best Answer

Upon investigation, it appears that the order of calculations depends on the priority set in each line of the store argument. so if  you want a function field to compute before another, the priorities need to be lower, or higher if you want the opposite.

In conclusion, if you want to force a computation order, then define the priority argument in the store argument, otherwise if you just set store to True then the computation will be arbitrary since they all have the same default priority 10

Avatar
Opusti