-
Notifications
You must be signed in to change notification settings - Fork 46
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
Review messaging in KN-PMP #426
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #426 +/- ##
=====================================
Coverage 77.8% 77.8%
=====================================
Files 27 27
Lines 2638 2638
=====================================
Hits 2053 2053
Misses 585 585
|
I need to update the test for this. Will push up a fix shortly. |
@@ -547,7 +547,7 @@ def solve(self, solver: pulp.LpSolver, results: bool = True): | |||
class KNearestPMedian(PMedian): | |||
r""" | |||
Implement the P-Median Model with Near-Far Cost Allocation and solve it. | |||
The model is adapted from :cite:`richard_2018`, can be formulated as: | |||
The model is adapted from :cite:`richard_2018`, and can be formulated as: |
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.
This should probably be keyed "church_2018", no?
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.
Anyway, I don't mind if it's not.
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.
Looks like it snuck in as richard_2018
.
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.
I'll throw in a quick PR for a fix.
This MR:
xref #414