Fix copy pasta error in create vertical channel route

This commit is contained in:
Matt Guthaus 2018-09-11 14:47:55 -07:00
parent 5e34233479
commit 3587f90e94
1 changed files with 2 additions and 2 deletions

View File

@ -835,13 +835,13 @@ class layout(lef.lef):
offset -= vector(0,pitch) offset -= vector(0,pitch)
def create_vertical_channel_route(self, route_map, left_inst, right_inst, offset, def create_vertical_channel_route(self, route_map, left_pins, right_pins, offset,
layer_stack=("metal1", "via1", "metal2"), layer_stack=("metal1", "via1", "metal2"),
pitch=None): pitch=None):
""" """
Wrapper to create a vertical channel route Wrapper to create a vertical channel route
""" """
self.create_channel_route(route_map, left_inst, right_inst, offset, self.create_channel_route(route_map, left_pins, right_pins, offset,
layer_stack, pitch, vertical=True) layer_stack, pitch, vertical=True)
def create_horizontal_channel_route(self, route_map, top_pins, bottom_pins, offset, def create_horizontal_channel_route(self, route_map, top_pins, bottom_pins, offset,