Skip to content

Commit

Permalink
Try fixing stack size error
Browse files Browse the repository at this point in the history
  • Loading branch information
saulshanabrook committed Dec 12, 2024
1 parent bd0b372 commit 278a263
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "egraph-visualizer",
"version": "2.1.1",
"version": "2.1.2",
"repository": {
"type": "git",
"url": "git+https://github.com/egraphs-good/egraph-visualizer.git"
Expand Down
4 changes: 3 additions & 1 deletion src/layout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ const rootLayoutOptions = {
"elk.algorithm": "layered",
"elk.direction": "DOWN",
// This seems to result in a more compact layout
"elk.layered.nodePlacement.strategy": "NETWORK_SIMPLEX",
// disable to stop stack size error
// https://github.com/kieler/elkjs/issues/314
// "elk.layered.nodePlacement.strategy": "NETWORK_SIMPLEX",
"elk.layered.mergeEdges": "true",

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

0 comments on commit 278a263

Please sign in to comment.