Skip to content

Commit 965fc71

Browse files
author
nmacedo
committed
style reverted
1 parent 884f02b commit 965fc71

File tree

1 file changed

+3
-6
lines changed
  • org.alloytools.alloy.core/src/main/java/edu/mit/csail/sdg/translator

1 file changed

+3
-6
lines changed

org.alloytools.alloy.core/src/main/java/edu/mit/csail/sdg/translator/A4Solution.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1608,8 +1608,7 @@ public void skolemizing(Decl decl, Relation skolem, List<Decl> predecl) {
16081608
t = pp.product(t);
16091609
}
16101610
kr2type(skolem, t);
1611-
} catch (Throwable ex) {
1612-
} // Exception here is not fatal
1611+
} catch (Throwable ex) {} // Exception here is not fatal
16131612
}
16141613

16151614
@Override
@@ -1709,13 +1708,11 @@ public synchronized void solvingCNF(int step, int primaryVars, int vars, int cla
17091708
if (opt.coreMinimization == 0)
17101709
try {
17111710
p.minimize(new RCEStrategy(p.log()));
1712-
} catch (Throwable ex) {
1713-
}
1711+
} catch (Throwable ex) {}
17141712
if (opt.coreMinimization == 1)
17151713
try {
17161714
p.minimize(new HybridStrategy(p.log()));
1717-
} catch (Throwable ex) {
1718-
}
1715+
} catch (Throwable ex) {}
17191716
rep.minimized(cmd, i, p.highLevelCore().size());
17201717
}
17211718
for (Iterator<TranslationRecord> it = p.core(); it.hasNext();) {

0 commit comments

Comments
 (0)