JuliaIntervals / IntervalConstraintProgramming.jl

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

Breaks with new version of ModelingToolkit #138

Closed dpsanders closed 5 years ago

dpsanders commented 5 years ago

Variables in ModelingToolkit are now functions, which breaks some internals of ICP:

julia> @variables x y
(x(), y())

Contractor([x, y], x^2 + y^2)
ERROR: ArgumentError: Function x not available. Use @function to define it.
dpsanders commented 5 years ago

Fixed by #139.

@yashcodes: Write Fixes <issue number> in the PR to automatically close the relevant issue when the PR is merged.