Updated naming conventions

This commit is contained in:
Christophe Riccio
2011-05-04 10:21:25 +01:00
parent 7a1cc47897
commit 58d2d282f2
2 changed files with 82 additions and 44 deletions

View File

@@ -23,7 +23,7 @@ namespace ulp
std::size_t Count = 0;
float TempA(a);
float TempB(b);
while((TempA = _nextafterf(TempA, TempB)) != TempB)
//while((TempA = _nextafterf(TempA, TempB)) != TempB)
++Count;
return Count;
}
@@ -36,7 +36,7 @@ namespace ulp
{
std::size_t Count = 0;
float Temp = a;
while((Temp = _nextafterf(Temp, b)) != b)
//while((Temp = _nextafterf(Temp, b)) != b)
{
std::cout << Temp << " " << b << std::endl;
++Count;
@@ -52,7 +52,7 @@ namespace ulp
{
std::size_t Count = 0;
double Temp = a;
while((Temp = _nextafter(Temp, b)) != b)
//while((Temp = _nextafter(Temp, b)) != b)
{
std::cout << Temp << " " << b << std::endl;
++Count;