Skip to content

Commit

Permalink
Fixed a bug that resulted in unintentional level skips
Browse files Browse the repository at this point in the history
  • Loading branch information
mondokm committed Feb 16, 2024
1 parent 218df2e commit 105f3ea
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ public RecursiveIntObjMapView<? extends MddNode> toCanonicalRepresentation(MddVa
if (ExprUtils.getConstants(canonizedExpr).isEmpty()) {
if (canonizedExpr instanceof FalseExpr) {
return mddVariable.getMddGraph().getTerminalZeroNode();
} else {
} /*else {
final MddGraph<Expr> mddGraph = (MddGraph<Expr>) mddVariable.getMddGraph();
return mddGraph.getNodeFor(canonizedExpr);
}
}*/
}

// Check if default
Expand Down

0 comments on commit 105f3ea

Please sign in to comment.