| 51 | |
| 52 | @dataclass(slots=True) |
| 53 | class WorkflowConfig: |
| 54 | sys_iterations: int = 15 |
| 55 | exp_iterations: int = 1 |
| 56 | query_iterations: int = 1 |
| 57 | scan_iterations: int = 1 |
| 58 | debug: bool = False |
| 59 | draw_graph: bool = False |
| 60 | |
| 61 | |
| 62 | @dataclass(slots=True) |
no outgoing calls
no test coverage detected