Skip to content

Commit 278a263

Browse files
Try fixing stack size error
1 parent bd0b372 commit 278a263

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "egraph-visualizer",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/egraphs-good/egraph-visualizer.git"

src/layout.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ const rootLayoutOptions = {
1515
"elk.algorithm": "layered",
1616
"elk.direction": "DOWN",
1717
// This seems to result in a more compact layout
18-
"elk.layered.nodePlacement.strategy": "NETWORK_SIMPLEX",
18+
// disable to stop stack size error
19+
// https://github.com/kieler/elkjs/issues/314
20+
// "elk.layered.nodePlacement.strategy": "NETWORK_SIMPLEX",
1921
"elk.layered.mergeEdges": "true",
2022

2123
// Can you use spline routing instead which generates non orthogonal edges

0 commit comments

Comments
 (0)