Requested changes
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 1m3s
Run Tests / test (push) Successful in 2m12s

This commit is contained in:
Nif 2024-02-14 15:56:18 +00:00
parent 5e32fa4985
commit 263c951cf8

View file

@ -339,19 +339,19 @@ export const branchedResetPropagation = function (
resettingNode: GenericTreeNode
): void {
const links = unref(tree.branches);
if (links === undefined) return;
let reset: GenericTreeNode[] = [];
if (links == null) return;
const reset: GenericTreeNode[] = [];
let current = [resettingNode];
while (current.length != 0) {
let next: GenericTreeNode[] = [];
for (let node of current) {
for (let link of links.filter(link => link.startNode === node)) {
const next: GenericTreeNode[] = [];
for (const node of current) {
for (const link of links.filter(link => link.startNode === node)) {
if ([...reset, ...current].includes(link.endNode)) continue
next.push(link.endNode);
link.endNode.reset?.reset();
}
};
reset = reset.concat(current);
reset.push(...current);
current = next;
}
};