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
For MinkowskiSum and CartesianProduct we have defined neutral/absorbing elements only for the +/* functions, but not for the constructor. It would be more consistent to define them using new constructors so that A + B === MinkowskiSum(A, B) in all cases.
Note that one has to add type parameters to avoid ambiguities. We saw that for ConvexHull where we already have this (because there is no separate function symbol).
The text was updated successfully, but these errors were encountered:
For
MinkowskiSum
andCartesianProduct
we have defined neutral/absorbing elements only for the+
/*
functions, but not for the constructor. It would be more consistent to define them using new constructors so thatA + B === MinkowskiSum(A, B)
in all cases.Note that one has to add type parameters to avoid ambiguities. We saw that for
ConvexHull
where we already have this (because there is no separate function symbol).The text was updated successfully, but these errors were encountered: