| 21 | namespace TNN_NS { |
| 22 | |
| 23 | std::string DoubleToString(double val) { |
| 24 | std::stringstream stream; |
| 25 | stream << std::setprecision(3) << std::setiosflags(std::ios::fixed) << val; |
| 26 | return stream.str(); |
| 27 | } |
| 28 | |
| 29 | std::string DoubleToStringFilter(double val) { |
| 30 | if (0 == val) { |
no test coverage detected