@@ -204,8 +204,10 @@ public void fpremNormal() throws SolverException, InterruptedException {
204
204
.that (solver == Solvers .MATHSAT5 )
205
205
.isFalse ();
206
206
207
- for (FloatingPointType prec : new FloatingPointType []{singlePrecType , doublePrecType ,
208
- FormulaType .getFloatingPointType (5 , 6 )}) {
207
+ for (FloatingPointType prec :
208
+ new FloatingPointType [] {
209
+ singlePrecType , doublePrecType , FormulaType .getFloatingPointType (5 , 6 )
210
+ }) {
209
211
210
212
final FloatingPointFormula five = fpmgr .makeNumber (5 , prec );
211
213
final FloatingPointFormula four = fpmgr .makeNumber (4 , prec );
@@ -229,8 +231,10 @@ public void fpremSpecial() throws SolverException, InterruptedException {
229
231
.that (solver == Solvers .MATHSAT5 )
230
232
.isFalse ();
231
233
232
- for (FloatingPointType prec : new FloatingPointType []{singlePrecType , doublePrecType ,
233
- FormulaType .getFloatingPointType (5 , 6 )}) {
234
+ for (FloatingPointType prec :
235
+ new FloatingPointType [] {
236
+ singlePrecType , doublePrecType , FormulaType .getFloatingPointType (5 , 6 )
237
+ }) {
234
238
235
239
final FloatingPointFormula num = fpmgr .makeNumber (42 , prec );
236
240
@@ -242,7 +246,6 @@ public void fpremSpecial() throws SolverException, InterruptedException {
242
246
final FloatingPointFormula minusZero = fpmgr .makeNumber ("0" , prec );
243
247
final FloatingPointFormula minusInf = fpmgr .makeMinusInfinity (prec );
244
248
245
-
246
249
final FloatingPointFormula expr1 = fpmgr .remainder (nan , nan );
247
250
final FloatingPointFormula expr2 = fpmgr .remainder (zero , zero );
248
251
final FloatingPointFormula expr3 = fpmgr .remainder (inf , inf );
0 commit comments