Skip to content

Commit

Permalink
Revert pathutils to old
Browse files Browse the repository at this point in the history
  • Loading branch information
RipplB committed Oct 27, 2023
1 parent 2cdce3f commit 71d2c7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ public <T extends Type> Expr<T> foldin(final Expr<T> expr) {
final VarDecl<T> varDecl = constDecl.getVarDecl();
final int index = constDecl.getIndex();
final int nPrimes = index - indexing.get(varDecl);
//checkArgument(nPrimes >= 0, "Indexing mismatch on declaration: constDecl index %d, indexing %d", index, indexing.get(varDecl));
checkArgument(nPrimes >= 0, "Indexing mismatch on declaration");
final Expr<T> varRef = varDecl.getRef();
if (nPrimes == 0) {
return varRef;
Expand Down

0 comments on commit 71d2c7b

Please sign in to comment.