Analyzing instances in series before initial solve? #11
-
Hi! Is it legal for us to load multiple instances in the series before we start to solve the first instance? e.g., gather statistics on changes between all instances. Obviously this would consume the time for the first instance, but I couldn't see anything in the rules that explicitly forbid this approach:
According to the above it should technically be possible to analyze all instances and then proceed to solve them sequentially. Is this okay, or must we load and then solve each instance sequentially? i.e., cannot load next instance until the previous is solved. Thanks for the clarification! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi Luke, Thank you for this important question! You are correct that our description was vague on this point. We clarified the rules now in this regard:
Our motivation here was that in relevant practical scenarios the data for future instances will typically not be available at this point. It may even depend on the solution of the current instance. However, you are of course right that information on which parts of the model may change is usually known. If I understood you correctly, this is what you would like to extract. We think it is fair to pass such information to your method and are currently debating how to best provide this information. Please stand by for a few days and we will let all participants know. Thanks again, |
Beta Was this translation helpful? Give feedback.
Hi Luke,
Thank you for this important question! You are correct that our description was vague on this point. We clarified the rules now in this regard:
Our motivation here was that in relevant practical scenarios the data for future instances will typically not be available at this point. It may even …