We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We currently have these methods:
JuMP.jl/src/operators.jl
Lines 201 to 232 in 8a856bb
#3106 will make them somewhat more general by supporting 3+ exponents. In doing so, it makes the return type unstable.
3
Once merged, we should consider changing x^0 to return one(T) and x^1 to return x.
x^0
one(T)
x^1
x
See also https://github.com/jump-dev/JuMP.jl/pull/3106/files#r1295483658
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
We currently have these methods:
JuMP.jl/src/operators.jl
Lines 201 to 232 in 8a856bb
#3106 will make them somewhat more general by supporting
3
+ exponents. In doing so, it makes the return type unstable.Once merged, we should consider changing
x^0
to returnone(T)
andx^1
to returnx
.See also https://github.com/jump-dev/JuMP.jl/pull/3106/files#r1295483658
The text was updated successfully, but these errors were encountered: