-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Concrete translation of basic set types #1184
Comments
Because in Julia help?> ∩
"∩" can be typed by \cap<tab>
search: ∩
intersect(s, itrs...)
∩(s, itrs...) |
Oh, ok, so the problem was that if we extend |
I support |
This even extends to the |
In #1173 we added a lazy
Translation
operator.We should add the concrete operation.
It can preserve the type in many cases, for example, the translation of an abstracthyperrectangle amounts to translating the center. For a general polytopic set, one translates the vertices. For a set represented by constraints, one can translate the constraints using
constraints_list(::Translation)
.(About the name
translate
ortranslation
-- I prefertranslate
... but for the concrete intersection we keptIntersection
for the type andintersection
, i wonder we we didn't chooseintersect
..)The text was updated successfully, but these errors were encountered: