JuliaIntervals / IntervalConstraintProgramming.jl

Calculate rigorously the feasible region for a set of real-valued inequalities with Julia
Other
63 stars 16 forks source link

Contractor((x,y) -> x) does not work #144

Closed dpsanders closed 6 months ago

dpsanders commented 5 years ago

It's currently necessary to write e.g. 1 * x.

cc @yashcodes

yashvardhan747 commented 5 years ago

It will not work like this, use

julia> vars = @variables x y
julia> C = Contrator(vars, (x, y)->x )
dpsanders commented 6 months ago

No longer relevant