(self, pair: List[Operation])
| 482 | |
| 483 | # discard original fp value and store the current value as new fp value |
| 484 | def store_parameter(self, pair: List[Operation]): |
| 485 | for op in pair: |
| 486 | if isinstance(op, QuantableOperation): |
| 487 | op.store_parameter_value() |
| 488 | |
| 489 | # recover from maintained original parameters |
| 490 | def recover_original_parameter(self, |
no test coverage detected