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
(outsourced from a comment by @mforets in #342)
Generalize the approach of CacheMinkowskiSum to other set representations. As a design strategy, in a future revision we could use composition like:
The cached MinkowskiSumArray turned out to give very good results in practice. I think this feature is worth adding, since it can be interesting for other applications.
The cached MinkowskiSumArray turned out to give very good results in practice. I think this feature is worth adding, since it can be interesting for other applications.
Note that it was only so efficient because we could remove the sets again and thus skip repeated computations. This is because of the linearity of the support vector for the sum. Without this property I do not expect good performance.
(outsourced from a comment by @mforets in #342)
Generalize the approach of
CacheMinkowskiSum
to other set representations. As a design strategy, in a future revision we could use composition like:This could possibly be outsourced to a macro.
The text was updated successfully, but these errors were encountered: