@@ -18,7 +18,7 @@ changes.
1818 with MathOptInterface. (#504 ), (#551 ), (#584 ), (#588 ), (#637 )
1919 * ` x + A ` will error if ` x ` is a scalar variable and ` A ` is an array.
2020 Instead, use ` x * ones(size(A)) + A ` .
21- * The ` RelativeEntropyAtom ` now returns a scalar value instead o
21+ * The ` RelativeEntropyAtom ` now returns a scalar value instead of
2222 elementwise values. This does not affect the result of ` relative_entropy ` .
2323 * The function ` constant ` should be used instead of the type ` Constant `
2424 (which now refers to exclusively real constants).
@@ -28,10 +28,10 @@ changes.
2828 (Following the convention in MathOptInterface, the dual of ` a <= b ` is
2929 always negative, regardless of optimization sense.) (#593 )
3030 * The structs ` LtConstraint ` , ` GtConstraint ` , ` EqConstraint `
31- ` SOCConstraint ` , ` ExpConstraint ` , ` GeoMeanEpiConeConstraint ` ,
32- ` GeoMeanHypoConeConstraint ` , and ` SDPConstraint ` have been replaced by
31+ ` SOCConstraint ` , ` ExpConstraint ` , ` SDPConstraint ` , ` GeoMeanEpiConeConstraint ` ,
32+ ` GeoMeanHypoConeConstraint ` , and ` RelativeEntropyEpiCone ` , have been replaced by
3333 ` Constraint{S} ` where ` S<:MOI.AbstractSet ` (#590 ), (#597 ), (#598 ),
34- (#599 ), (#601 ), (#602 ), (#604 ), (#623 ), (#632 ), (#648 )
34+ (#599 ), (#601 ), (#602 ), (#604 ), (#623 ), (#632 ), (#648 ), ( # 663 ), ( # 665 )
3535 * The set ` GeomMeanEpiCone ` has been renamed to ` GeometricMeanEpiConeSquare `
3636 and ` GeomMeanHypoCone ` has been renamed to ` GeometricMeanHypoConeSquare `
3737 (#638 )
@@ -63,6 +63,8 @@ changes.
6363 between solves (#586 )
6464 * The ` Context ` struct has been refactored and various fields have been
6565 changed. The internal details are now considered private. (#645 )
66+ * The keyword argument ` silent_solver ` has been deprecated to ` silent ` . (#670 )
67+ * Concatenating lists of constraints using ` + ` (and ` += ` ) has been deprecated. (#659 )
6668
6769### Added
6870
@@ -82,6 +84,9 @@ changes.
8284 the DCP expression graph to MathOptInterface (#633 )
8385 * Added support for using ` Problem ` as an atom (#646 )
8486 * ` show(::IO, ::Problem) ` now includes some problem statistics (#650 )
87+ * ` show(::IO, ::Problem) ` now prints less of the expression tree by default (#661 )
88+ * A [ new example] ( @ref " Continuity of the quantum conditional entropy ") for quantum conditional entropy has been added. (#671 )
89+ * ` solve! ` now returns the problem itself (#658 )
8590
8691### Fixed
8792
@@ -101,7 +106,7 @@ changes.
101106### Other
102107
103108 * Improved the documentation (#506 ), (#517 ), (#529 ), (#571 ), (#573 ), (#574 ),
104- (#576 ), (#579 ), (#587 ), (#594 ), (#628 ), (#652 ), (#656 )
109+ (#576 ), (#579 ), (#587 ), (#594 ), (#628 ), (#652 ), (#656 ), ( # 666 ), ( # 674 )
105110 * Refactored the tests into a functional form (#532 )
106111 * Updated ` Project.toml ` (#535 )
107112 * Added ` test/Project.toml ` (#536 )
0 commit comments