Organize imports of the new router

This commit is contained in:
Eren Dogan 2023-08-02 21:35:13 -07:00
parent 54fc34392d
commit 8fff4e2635
4 changed files with 3 additions and 4 deletions

View File

@ -3,7 +3,6 @@
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz # Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
# All rights reserved. # All rights reserved.
# #
from openram.base.vector import vector
from openram.base.vector3d import vector3d from openram.base.vector3d import vector3d
from openram.tech import drc from openram.tech import drc

View File

@ -10,9 +10,9 @@ from openram.tech import GDS
from openram.tech import drc from openram.tech import drc
from openram.tech import layer as tech_layer from openram.tech import layer as tech_layer
from openram import OPTS from openram import OPTS
from .router_tech import router_tech
from .graph_shape import graph_shape from .graph_shape import graph_shape
from .graph_utils import snap from .graph_utils import snap
from .router_tech import router_tech
class router(router_tech): class router(router_tech):

View File

@ -7,8 +7,8 @@ from openram import debug
from openram.base.vector import vector from openram.base.vector import vector
from openram import OPTS from openram import OPTS
from .graph import graph from .graph import graph
from .router import router
from .graph_shape import graph_shape from .graph_shape import graph_shape
from .router import router
class signal_escape_router(router): class signal_escape_router(router):

View File

@ -7,8 +7,8 @@ from openram import debug
from openram.base.vector import vector from openram.base.vector import vector
from openram import OPTS from openram import OPTS
from .graph import graph from .graph import graph
from .router import router
from .graph_shape import graph_shape from .graph_shape import graph_shape
from .router import router
class supply_router(router): class supply_router(router):