Thanks to visit codestin.com
Credit goes to github.com

Skip to content

fix bug in abc example #66

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions examples/abc/abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ def solve():
c = solution["c"]
value = (a * 100 + b * 10 + c) / (a + b + c)
if value < minvalue:
minvalue = value
minsolution = solution
return minvalue, minsolution

Expand Down
4 changes: 2 additions & 2 deletions tests/test_constraint.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
def test_abc():
solutions = abc.solve()
minvalue, minsolution = solutions
assert minvalue == 37
assert minsolution == {"a": 1, "c": 2, "b": 1}
assert abs(minvalue - 10.473684210526315) < 0.00001
assert minsolution == {"a": 1, "b": 9, "c": 9}


def test_coins():
Expand Down