Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Rin204 committed Apr 29, 2024
1 parent f2b1e6c commit ee40ec5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions expansion/$tests/graph/mincostflow.test.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class edge:
to: int
cap: int
flow: int
cost: int
# def __init__(self, from_, to, cap, flow, cost):
# self.from_ = from_
# self.to = to
Expand Down
1 change: 1 addition & 0 deletions expansion/graph/mincostflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ class edge:
to: int
cap: int
flow: int
cost: int
# def __init__(self, from_, to, cap, flow, cost):
# self.from_ = from_
# self.to = to
Expand Down
1 change: 1 addition & 0 deletions src/graph/mincostflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ class edge:
to: int
cap: int
flow: int
cost: int
# def __init__(self, from_, to, cap, flow, cost):
# self.from_ = from_
# self.to = to
Expand Down

0 comments on commit ee40ec5

Please sign in to comment.