(self, property: QuantizationProperty)
| 253 | self._policy = policy |
| 254 | |
| 255 | def has_property(self, property: QuantizationProperty) -> bool: |
| 256 | return (self._policy & property.value) != 0 |
| 257 | |
| 258 | def __eq__(self, o: object) -> bool: |
| 259 | if not isinstance(o, QuantizationPolicy): |
no outgoing calls
no test coverage detected