소스 검색

fixed fma error

Nicolas Winkler 4 년 전
부모
커밋
45eb37a515
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      libmandel/include/LightDoubleDouble.h

+ 2 - 2
libmandel/include/LightDoubleDouble.h

@@ -53,13 +53,13 @@ namespace mnd
             return { p, e };
         }
 
-        template<typename T>
+        /*template<typename T>
         inline Pair<T> twoProdFma(T a, T b)
         {
             T p = a * b;
             T e = std::fma(a, b, -p);
             return { p, e };
-        }
+        }*/
     }
 }