| 11 | AlongN = 1 |
| 12 | |
| 13 | class RasterOrderOptions(Enum): |
| 14 | Heuristic = (0,) |
| 15 | AlongM = (1,) |
| 16 | AlongN = 2 |
| 17 | |
| 18 | def __init__( |
| 19 | self, blocks_per_problem=0, log_swizzle_size=0, raster_order=RasterOrder.AlongN |
nothing calls this directly
no outgoing calls
no test coverage detected