From 358a401cf687c44271205e7ccfd0e09d0cc49570 Mon Sep 17 00:00:00 2001 From: STEINNI Date: Wed, 21 Jan 2026 14:45:10 +0000 Subject: [PATCH] clean-without longbranches --- bzGraflow.js | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/bzGraflow.js b/bzGraflow.js index ca7ffbc..634f760 100644 --- a/bzGraflow.js +++ b/bzGraflow.js @@ -459,19 +459,6 @@ class BZgraflow extends Buildoz{ return backEdges } - findCrossLayerLinks(links) { - const { parents } = this.buildGraphStructures(this.flow.nodes, links) - const layers = this.computeLayers(this.flow.nodes, parents) - const crossLayerLinks = [] - for(const link of links){ - const from = link.from[0] - const to = link.to[0] - if(layers[from] !== layers[to]) { - crossLayerLinks.push(link) - } - } - return crossLayerLinks - } } Buildoz.define('graflow', BZgraflow)