--- LogarithmicBoundsComputer.cpp 2008-12-29 17:21:17.872823000 +0000 +++ LogarithmicBoundsComputer.cpp 2008-12-29 17:55:00.054956890 +0000 @@ -65,7 +65,7 @@ /*------------------------------------------------------------------------------------------*/ void LogarithmicBoundsComputer::inversePointScale(double scaledCoord, double * coord) { - *coord = exp10(scaledCoord); + *coord = pow(10,scaledCoord); } /*------------------------------------------------------------------------------------------*/ void LogarithmicBoundsComputer::pointScale(double vector[], int vectorLength) @@ -80,7 +80,7 @@ { for (int i = 0; i < vectorLength; i++) { - vector[i] = exp10(vector[i]); + vector[i] = pow(10,vector[i]); } } /*------------------------------------------------------------------------------------------*/