when value in variable changes, identify which variable(s) to update
Given you have variables a, b, c, d where b depends on a, c depends on b, c, d depends on a. When updating a only an update of b and d should be triggered since c depends on b and c will be updated eventually when the update of b are finished.
Showing
public/app/core/utils/dag.test.ts
0 → 100644
public/app/core/utils/dag.ts
0 → 100644
Please
register
or
sign in
to comment