bugfix in blueNorm

This commit is contained in:
Gael Guennebaud
2009-07-16 14:20:36 +02:00
parent 65fc70b750
commit 525da6a464
3 changed files with 89 additions and 84 deletions

View File

@@ -70,9 +70,7 @@ template<> struct NumTraits<float>
HasFloatingPoint = 1,
ReadCost = 1,
AddCost = 1,
MulCost = 1,
Base = 2,
Mantissa = 23
MulCost = 1
};
};
@@ -85,9 +83,7 @@ template<> struct NumTraits<double>
HasFloatingPoint = 1,
ReadCost = 1,
AddCost = 1,
MulCost = 1,
Base = 2,
Mantissa = 52
MulCost = 1
};
};