| 2634 | return exp(x) - 1.0; |
| 2635 | } |
| 2636 | double log1p(double x) { |
| 2637 | if (fabs(x) < 1e-5) |
| 2638 | return (x-x*x/2+x*x*x/3); |
| 2639 | else |
| 2640 | return log(x+1); |
| 2641 | } |
| 2642 | #endif |
| 2643 | |
| 2644 | MateOrientation getMateOrientation(std::string const& matesOrientation) |
no outgoing calls
no test coverage detected