You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DefaultEdge[][] took 2GB of heap per thread in mid-size MJS problems.
Even though it did improve performance, such a hit would have made multi-threading practically impossible.
It would have also prevented us from solving large problems.
Copy file name to clipboardExpand all lines: core/src/main/java/ai/timefold/solver/core/impl/domain/variable/declarative/DefaultTopologicalOrderGraph.java
+17-12Lines changed: 17 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -32,24 +32,29 @@ public DefaultTopologicalOrderGraph(final int size) {
Copy file name to clipboardExpand all lines: core/src/main/java/ai/timefold/solver/core/impl/domain/variable/declarative/DefaultVariableReferenceGraph.java
Copy file name to clipboardExpand all lines: core/src/test/java/ai/timefold/solver/core/impl/domain/variable/listener/support/VariableListenerSupportTest.java
+8-10Lines changed: 8 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -191,19 +191,17 @@ public void removeEdge(VariableMetaModel<?, ?, ?> fromId, Object fromEntity, Var
0 commit comments