Skip to content
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

[FIX]: Unpacking dictionary #37

Open
wants to merge 1 commit into
base: constraints-fix
Choose a base branch
from
Open
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
[FIX]: Fixed issue where dictionary was being unpacked without the it…
…ems() function
tanmaytirpankar committed Jan 4, 2025
commit 1666d70995b9ada865f88a9e56adf2be61fec77f
2 changes: 1 addition & 1 deletion src/frontend/gelpia.py
Original file line number Diff line number Diff line change
@@ -233,7 +233,7 @@ def find_max(function, epsilons, timeout, grace, update, iters, seed, debug, use
else:
max_lower.value = my_max_lower
max_upper.value = my_max_upper
for key, value in my_domain:
for key, value in my_domain.items():
domain[key] = value

return my_max_lower, my_max_upper, my_domain, my_solver_calls