-
Notifications
You must be signed in to change notification settings - Fork 2
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
DSDA_Improvement #11
base: main
Are you sure you want to change the base?
DSDA_Improvement #11
Changes from 2 commits
b50ae9f
6099bff
a2ac3eb
bf1fd83
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -152,7 +152,7 @@ def problem_logic_batch(m): | |
model_args={}, | ||
starting_point=starting_point, | ||
ext_dict=ext_ref, | ||
mip_transformation=True, | ||
mip_transformation=False, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see that you removed the MIP transformation for each one of these steps. I would like you to check each subproblem, what the instance looks like, and what that MIP transformation is introducing. Start with small_batch. |
||
transformation=transformation, | ||
ext_logic=problem_logic_batch, | ||
k=k, | ||
|
@@ -163,7 +163,7 @@ def problem_logic_batch(m): | |
iter_timelimit=timelimit, | ||
timelimit=timelimit, | ||
gams_output=False, | ||
tee=globaltee, | ||
tee=False, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why removing the tee? |
||
global_tee=globaltee, | ||
) | ||
new_result = {'Method': str('D-SDA_MIP_'+transformation), 'Approach': str('k='+k), 'Solver': solver, 'Objective': pe.value( | ||
|
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.
If this is not imported anywhere, do not just comment it out but remove it
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.
Okay, I removed the imports