Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The file was started with Version `0.4`.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Fixed

* Fixed a typo in `DebugFeasibility`, where an undefined variable was used.

## [0.5.28] November 17, 2025

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/plans/debug.jl
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ function (d::DebugFeasibility)(
(f === :NumIneq) && (s *= "$(n_ineq)")
(f === :NumIneqNz) && (s *= n_ineq == 0 ? "" : "$(n_ineq)")
(f === :TotalEq) && (s *= "$(sum(abs.(eqc_nz); init = 0.0))")
(f === :TotalInEq) && (s *= "$(sum(ineq_pos; init = 0.0))")
(f === :TotalInEq) && (s *= "$(sum(ineqc_pos; init = 0.0))")
end
print(d.io, (k > 0) ? s : "")
Comment thread
kellertuer marked this conversation as resolved.
return nothing
Expand Down
Loading