(self, features_names)
| 35 | return self.copt.cpu_baseline_names() |
| 36 | |
| 37 | def serialize(self, features_names): |
| 38 | result = [] |
| 39 | for f in self.copt.feature_sorted(features_names): |
| 40 | gather = self.copt.feature_supported.get(f, {}).get("group", []) |
| 41 | implies = self.copt.feature_sorted(self.copt.feature_implies(f)) |
| 42 | result.append((f, implies, gather)) |
| 43 | return result |
| 44 | |
| 45 | def table(self, **kwargs): |
| 46 | return self.gen_table(self.serialize(self.names()), **kwargs) |
no test coverage detected