Removed some utility functions that duplicate standard library functions
This commit is contained in:
parent
fb3be32683
commit
84dfde0295
1 changed files with 0 additions and 16 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue