| 87 | } |
| 88 | |
| 89 | void AggregateParamToString(String & ret, const AggregateParam & p) |
| 90 | { |
| 91 | if (p.has_float_param()) |
| 92 | ret += std::to_string(p.float_param()); |
| 93 | else |
| 94 | ret += std::to_string(p.int_param()); |
| 95 | } |
| 96 | |
| 97 | static void ClusterToString(String & ret, const bool clause, const Cluster & cl) |
| 98 | { |
no test coverage detected