Netlist Writer Manager
The netlist writer manager keeps track of all netlist writers that are available within HAL. It is used to dispatch writing tasks to the respective writers.
- hal_py.NetlistWriterManager.write(netlist: hal_py.Netlist, file_path: os.PathLike) bool
Write the given netlist into a file at the given location.
- Parameters
netlist (hal_py.Netlist) – The netlist.
file_path (pathlib.Path) – The output path.
- Returns
True on success, false otherwise.
- Return type