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
In 04ed669 new methods for centerline penalizer were added. Currently, there are four methods:
min
max
sum
avg
This means, that all invalid points are paired with the appropriate subsequence of the centerline, finding the longest distance the invalid point and centerline. Then, a method is used to compute the penalty.
To evaluate the methods, following experiment was performed:
Torino map
budget 100
loops 40
Even though the budget is quite small, the goal was to find if the method is "pushed" towards a good solution. Therefore, it is successful when a valid solution is found within the budget.
Results were:
min: 1/40
max: 11/40
sum: 10/40
avg: 10/40
According to this, we can omit min method.
The text was updated successfully, but these errors were encountered:
In 04ed669 new methods for
centerline
penalizer were added. Currently, there are four methods:min
max
sum
avg
This means, that all invalid points are paired with the appropriate subsequence of the centerline, finding the longest distance the invalid point and centerline. Then, a method is used to compute the penalty.
To evaluate the methods, following experiment was performed:
Even though the budget is quite small, the goal was to find if the method is "pushed" towards a good solution. Therefore, it is successful when a valid solution is found within the budget.
Results were:
min
: 1/40max
: 11/40sum
: 10/40avg
: 10/40According to this, we can omit
min
method.The text was updated successfully, but these errors were encountered: