(self, sample: Any, rng: random.Random)
| 75 | |
| 76 | @abc.abstractmethod |
| 77 | def eval_sample(self, sample: Any, rng: random.Random): |
| 78 | raise NotImplementedError() |
| 79 | |
| 80 | @property |
| 81 | def completion_fn(self) -> CompletionFn: |
nothing calls this directly
no test coverage detected