2022-03-27 23:50:21 -07:00
|
|
|
"""
|
2022-03-31 00:43:54 -07:00
|
|
|
snarled
|
2022-03-31 00:01:45 -07:00
|
|
|
=====
|
|
|
|
|
|
|
|
Layout connectivity checker.
|
|
|
|
|
2022-03-31 00:43:54 -07:00
|
|
|
`snarled` is a python package for checking electrical connectivity in multi-layer layouts.
|
2022-03-31 00:01:45 -07:00
|
|
|
|
|
|
|
It is intended to be "poor-man's LVS" (layout-versus-schematic), for when poverty
|
2023-06-08 01:02:43 -07:00
|
|
|
has deprived the man of a schematic and a better connectivity tool.
|
2022-03-31 00:01:45 -07:00
|
|
|
|
2023-06-08 01:02:43 -07:00
|
|
|
The main functionality is in `trace`.
|
|
|
|
`__main__.py` details the command-line interface.
|
2022-03-27 23:50:21 -07:00
|
|
|
"""
|
2024-08-01 00:24:46 -07:00
|
|
|
from .trace import (
|
|
|
|
trace_layout as trace_layout,
|
|
|
|
TraceAnalysis as TraceAnalysis,
|
|
|
|
)
|
2022-03-27 23:50:21 -07:00
|
|
|
|
|
|
|
__author__ = 'Jan Petykiewicz'
|
2023-06-08 01:02:43 -07:00
|
|
|
__version__ = '1.0'
|