-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Lower chained inequalities in an extendable way #39104
Comments
All conditionals are lowered to branches like this, so |
Thanks, good point. Hmm, it just feels like there should be some kind of intermediate level which could be extendable. |
We could give up on short-circuiting behavior, but that would definitely be a breaking change and I am unsure it's justified enough. |
I guess the point is that Julia currently expects You could argue that is an abuse of julia> Meta.@lower x ≼ y ≼ z
:($(Expr(:thunk, CodeInfo(
@ none within `top-level scope'
1 ─ %1 = x ≼ y
└── goto #3 if not %1
2 ─ %3 = y ≼ z
└── return %3
3 ─ return false
)))) |
The current semantics of chained inequalities are that for example in |
looks like you want an analog to
|
Partly. It's to be able to specify constraints in Julia, say for constrained optimization, without needing to resort to macros. using ModelingToolkit
@variables x, y, z # define symbolic variables
constraint = x ≤ 2y ≤ z # currently fails |
I think the solution for you is to use a macro
|
@mbauman Oops, sorry! @Moelf: I understand that macros give a "solution" and you can already do similar things with macros in IntervalArithmetic.jl and IntervalConstraintProgramming.jl. As I said in my previous comment: I would like to do this "without needing to resort to macros". |
Unfortunately I don't see a non-breaking way to implement this. |
The following lowering makes it impossible to extend
3 <= x <= 4
for user-defined types, e.g. in ModelingToolkit.jl:Could it be lowered to just
3 <=x && x <= 4
or similar?The text was updated successfully, but these errors were encountered: