-
Notifications
You must be signed in to change notification settings - Fork 16
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
naor #8
naor #8
Conversation
Naorl98
commented
Jul 5, 2024
- naorr
# Conflicts: # fairpyx/algorithms/high_multiplicity_fair_allocation.py
# Conflicts: # fairpyx/algorithms/high_multiplicity_fair_allocation.py
# Conflicts: # fairpyx/algorithms/high_multiplicity_fair_allocation.py
# Conflicts: # requirements.txt
setup.py
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The setup file should not change.
requirements.txt
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The requirements file should not change.
for i in range(num_agents): | ||
for j in range(num_items): | ||
# Constraint 7 - inequality (7) in the paper. | ||
constraint7 = allocation_variables[i][j] + delta[i][j] <= -1 + (2 * items_capacities[j]) * (1 - Z[i][j]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"(2 * items_capacities[j]) " should be "(2 * items_capacities[j] + 1)"
(bug fix by the paper author)
@@ -10,4 +10,4 @@ prtpy | |||
# cvxpy_leximin>=0.4.4 | |||
# prtpy>=0.7.0 | |||
# more_itertools | |||
# scs | |||
# scs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Its seems like it changed - but it not changed at all, this is the same code in the same line (13).
This is weird but this is the same code so it will not do anything.