(self)
| 213 | return 0 |
| 214 | |
| 215 | def print(self): |
| 216 | print("Field element") |
| 217 | print("\tNum elements: 2^" + str(log2(self.proof_length()))) |
| 218 | print("\tSize: ", convert_size(self.argument_size())) |
| 219 | |
| 220 | class Round: |
| 221 | def __init__(self): |
nothing calls this directly
no test coverage detected