| 7356 | |
| 7357 | public: |
| 7358 | string summary() { |
| 7359 | ostringstream out; |
| 7360 | out << "MIN/MAX VAR: " << lowprecision_t(min_var) |
| 7361 | << "/" << lowprecision_t(max_var) << " " |
| 7362 | << "STDDEV: " << lowprecision_t(dev()); |
| 7363 | return out.str(); |
| 7364 | } |
| 7365 | }; |
| 7366 | |
| 7367 | ostream& operator<<(ostream& out, |
no test coverage detected