| 36 | inline static double pow(double inA,double inB) { return ::std::pow(inA,inB); } |
| 37 | inline static double log(double inA) { return ::std::log(inA); } |
| 38 | inline static double max(double inA,double inB) { return inA>inB ? inA:inA==inA?inB:inA; } |
| 39 | inline static double min(double inA,double inB) { return inA<inB ? inA:inA==inA?inB:inA; } |
| 40 | |
| 41 | inline static double atan(double inA) { return ::std::atan(inA); } |
no outgoing calls
no test coverage detected