Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update changelog for recent PRs #673

Merged
merged 3 commits into from
May 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ changes.
with MathOptInterface. (#504), (#551), (#584), (#588), (#637)
* `x + A` will error if `x` is a scalar variable and `A` is an array.
Instead, use `x * ones(size(A)) + A`.
* The `RelativeEntropyAtom` now returns a scalar value instead o
* The `RelativeEntropyAtom` now returns a scalar value instead of
elementwise values. This does not affect the result of `relative_entropy`.
* The function `constant` should be used instead of the type `Constant`
(which now refers to exclusively real constants).
Expand All @@ -28,10 +28,10 @@ changes.
(Following the convention in MathOptInterface, the dual of `a <= b` is
always negative, regardless of optimization sense.) (#593)
* The structs `LtConstraint`, `GtConstraint`, `EqConstraint`
`SOCConstraint`, `ExpConstraint`, `GeoMeanEpiConeConstraint`,
`GeoMeanHypoConeConstraint`, and `SDPConstraint` have been replaced by
`SOCConstraint`, `ExpConstraint`, `SDPConstraint`, `GeoMeanEpiConeConstraint`,
`GeoMeanHypoConeConstraint`, and `RelativeEntropyEpiCone`, have been replaced by
`Constraint{S}` where `S<:MOI.AbstractSet` (#590), (#597), (#598),
(#599), (#601), (#602), (#604), (#623), (#632), (#648)
(#599), (#601), (#602), (#604), (#623), (#632), (#648), (#663), (#665)
* The set `GeomMeanEpiCone` has been renamed to `GeometricMeanEpiConeSquare`
and `GeomMeanHypoCone` has been renamed to `GeometricMeanHypoConeSquare`
(#638)
Expand Down Expand Up @@ -63,6 +63,8 @@ changes.
between solves (#586)
* The `Context` struct has been refactored and various fields have been
changed. The internal details are now considered private. (#645)
* The keyword argument `silent_solver` has been deprecated to `silent`. (#670)
* Concatenating lists of constraints using `+` (and `+=`) has been deprecated. (#659)

### Added

Expand All @@ -82,6 +84,9 @@ changes.
the DCP expression graph to MathOptInterface (#633)
* Added support for using `Problem` as an atom (#646)
* `show(::IO, ::Problem)` now includes some problem statistics (#650)
* `show(::IO, ::Problem)` now prints less of the expression tree by default (#661)
* A [new example](@ref "Continuity of the quantum conditional entropy") for quantum conditional entropy has been added. (#671)
* `solve!` now returns the problem itself (#658)

### Fixed

Expand All @@ -101,7 +106,7 @@ changes.
### Other

* Improved the documentation (#506), (#517), (#529), (#571), (#573), (#574),
(#576), (#579), (#587), (#594), (#628), (#652), (#656)
(#576), (#579), (#587), (#594), (#628), (#652), (#656), (#666), (#674)
* Refactored the tests into a functional form (#532)
* Updated `Project.toml` (#535)
* Added `test/Project.toml` (#536)
Expand Down
Loading