You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//If the source node is already being evaluated, meaning either the current connection is a circular reference or the source node is present earlier in the queue and is a circular reference,
479
+
//The cached output of the source node must be used. If there is no cached value, initialise one with a value of 0.
480
+
//OR
481
+
//Whether the node is evaluated or not, if there is a self referencing connection, use the specified parameter to determine whether it should be evaluated again or not.
482
+
//This is important because after a self referencing node's output is calculated, it is cached. When getting the value of that node again, something needs to decided whether to use the original output
483
+
//or to calculate a new output using the cached output to resolve the circular reference instead of the initial value of 0.
//If the source node is already being evaluated, meaning either the current connection is a circular reference or the source node is present earlier in the queue and is a circular reference,
624
+
//The cached output of the source node must be used. If there is no cached value, initialise one with a value of 0.
625
+
//OR
626
+
//Whether the node is evaluated or not, if there is a self referencing connection, use the specified parameter to determine whether it should be evaluated again or not.
627
+
//This is important because after a self referencing node's output is calculated, it is cached. When getting the value of that node again, something needs to decided whether to use the original output
628
+
//or to calculate a new output using the cached output to resolve the circular reference instead of the initial value of 0.
0 commit comments