Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 1.21 KB

NEWS.md

File metadata and controls

22 lines (19 loc) · 1.21 KB

Changes in v0.13.1

  • Allow disabling DCP warnings (#372)
  • Restore export of Constraint (#371)

Major changes in v0.13.0

  • The intermediate layer has changed from MathProgBase.jl to MathOptInterface.jl (#330). To solve problems, one should pass a MathOptInterface optimizer constructor, such as SCS.Optimizer, or () -> SCS.Optimizer(verbose=false).
  • lambdamin and lambdamax have been deprecated in favor of eigmin and eigmax. (#357)
  • Many "internal" functions and types are no longer exported, such as the atoms, types corresponding to constraints and vexities, etc. (#357)
  • evaluate(x::Variable) and evaluate(c::Constant) now return scalars and vectors as appropriate, instead of (1,1)- and (d,1)-matrices. (#359). This affects functions which used to return (1,1)-matrices; e.g., now evaluate(quadform(...)) yields a scalar.