- Fix deprecation warnings on Julia 0.4
- Update to JuMP 0.10, new minimum required version.
getVar
renamed togetVariance
- New
satisfied_with_probability
to check the probability violation at the current solution - Performance improvements
- Special preprocessing for cases that can be reduced to linear constraints (thanks Kaarthik Sundar)
- For two-sided chance constraints, choice between 2-approximation and 1.25 approximation
- Preliminary support for two-sided chance constraints.
solvechance
method renamed tosolve
- The meaning of
with_probability
has changed. Constraints must now hold with the given probability or greater, which is tractable for 1/2 or greater. A deprecation warning is in place when a small value is provided. - The
@addConstraint
macro now accepts chance constraints. - Following JuMP, the use of operators <= and >= outside of macros has been deprecated. Use
@addConstraint
instead ofaddConstraint
.
- Clarify and tidy up support for integer variables.
- Initial release