Removed some utility functions that duplicate standard library functions

This commit is contained in:
Ray Speth 2012-05-30 16:02:45 +00:00
parent fb3be32683
commit 84dfde0295

View file

@ -173,22 +173,6 @@ const doublereal Undef = -999.1234;
*/
const doublereal Tiny = 1.e-20;
//! inline function to return the max value of two doubles.
/*!
* @param x double value
* @param y second double value
*/
inline doublereal fmaxx(doublereal x, doublereal y)
{ return (x > y) ? x : y; }
//! inline function to return the min value of two doubles.
/*!
* @param x double value
* @param y second double value
*/
inline doublereal fminn(doublereal x, doublereal y)
{ return (x < y) ? x : y; }
//! Map connecting a string name with a double.
/*!
* This is used mostly to assign concentrations and mole fractions