We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd0b372 commit 278a263Copy full SHA for 278a263
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "egraph-visualizer",
3
- "version": "2.1.1",
+ "version": "2.1.2",
4
"repository": {
5
"type": "git",
6
"url": "git+https://github.com/egraphs-good/egraph-visualizer.git"
src/layout.ts
@@ -15,7 +15,9 @@ const rootLayoutOptions = {
15
"elk.algorithm": "layered",
16
"elk.direction": "DOWN",
17
// This seems to result in a more compact layout
18
- "elk.layered.nodePlacement.strategy": "NETWORK_SIMPLEX",
+ // disable to stop stack size error
19
+ // https://github.com/kieler/elkjs/issues/314
20
+ // "elk.layered.nodePlacement.strategy": "NETWORK_SIMPLEX",
21
"elk.layered.mergeEdges": "true",
22
23
// Can you use spline routing instead which generates non orthogonal edges
0 commit comments