File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed 
src/org/sosy_lab/java_smt/test Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 99package  org .sosy_lab .java_smt .test ;
1010
1111import  static  com .google .common .truth .TruthJUnit .assume ;
12+ import  static  org .sosy_lab .java_smt .api .FormulaType .getSinglePrecisionFloatingPointType ;
1213import  static  org .sosy_lab .java_smt .test .BooleanFormulaSubject .assertUsing ;
1314import  static  org .sosy_lab .java_smt .test .ProverEnvironmentSubject .assertThat ;
1415
3940import  org .sosy_lab .java_smt .api .FloatingPointFormulaManager ;
4041import  org .sosy_lab .java_smt .api .Formula ;
4142import  org .sosy_lab .java_smt .api .FormulaManager ;
42- import  org .sosy_lab .java_smt .api .FormulaType .FloatingPointType ;
4343import  org .sosy_lab .java_smt .api .IntegerFormulaManager ;
4444import  org .sosy_lab .java_smt .api .Model ;
4545import  org .sosy_lab .java_smt .api .NumeralFormula .IntegerFormula ;
@@ -241,11 +241,11 @@ protected final void requireBitvectorToInt() {
241241        .isNotEqualTo (Solvers .YICES2 );
242242  }
243243
244+   @ SuppressWarnings ("CheckReturnValue" )
244245  protected  final  void  requireFPToBitvector () {
245246    requireFloats ();
246247    try  {
247-       fpmgr .toIeeeBitvector (
248-           fpmgr .makeNumber (0 , FloatingPointType .getSinglePrecisionFloatingPointType ()));
248+       fpmgr .toIeeeBitvector (fpmgr .makeNumber (0 , getSinglePrecisionFloatingPointType ()));
249249    } catch  (UnsupportedOperationException  e ) {
250250      assume ()
251251          .withMessage ("Solver %s does not yet support FP-to-BV conversion" , solverToUse ())
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments