You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A better solution would be to check if "prediction>=bound" and "status=timeout" (the surrogate returns some extra info, I think we looked into it previously). This is to avoid cases where the prediction is exactly as bound, i.e., cplex solves the instance within exactly [bound] time, but I think it's unlikely, so we may be able to skip that.
This is not needed for now, we can just skip it and add it in later if needed.
The text was updated successfully, but these errors were encountered:
Current Logic
check the
[bound]
in irace's target-runner. If the surrogate predicts larger than bound, return bound + 1, else return the surrogate predictionFor context, irace's target-runner command line args
Future Task
A better solution would be to check if "prediction>=bound" and "status=timeout" (the surrogate returns some extra info, I think we looked into it previously). This is to avoid cases where the prediction is exactly as bound, i.e., cplex solves the instance within exactly [bound] time, but I think it's unlikely, so we may be able to skip that.
This is not needed for now, we can just skip it and add it in later if needed.
The text was updated successfully, but these errors were encountered: