return a dictionary to describe this policy. nothing funny.
(self)
| 296 | } |
| 297 | |
| 298 | def to_dict(self) -> dict: |
| 299 | """return a dictionary to describe this policy. |
| 300 | |
| 301 | nothing funny. |
| 302 | """ |
| 303 | return { |
| 304 | property.name: self.has_property(property) |
| 305 | for property in QuantizationProperty |
| 306 | } |
| 307 | |
| 308 | |
| 309 | class QuantizationStates(Enum): |
no test coverage detected