(config)
| 112 | return options; |
| 113 | |
| 114 | def tile(config): |
| 115 | if "guide_mesh" in config: |
| 116 | if "wire_list_file" in config: |
| 117 | return tile_with_mixed_patterns(config); |
| 118 | else: |
| 119 | return tile_with_guide_mesh(config); |
| 120 | else: |
| 121 | return tile_with_guide_box(config); |
| 122 | |
| 123 | def tile_with_guide_box(config): |
| 124 | options = extract_options(config); |
no test coverage detected