Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.

Commit cac65f4

Browse files
math.hpp: including cassert (#77)
* math.hpp: including cassert * updating changelog * Update CHANGELOG.md --------- Co-authored-by: Wilson <[email protected]>
1 parent a6ffb72 commit cac65f4

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
* Added `ConstraintSetProduct` ([#74](https://github.com/Simple-Robotics/proxsuite-nlp/pull/74))
1313

14+
### Fixed
15+
16+
* Include `<cassert>` in `math.hpp` to fix possible compilation issues ([#77](https://github.com/Simple-Robotics/proxsuite-nlp/pull/77))
17+
1418
### Changed
1519

1620
* `EqualityConstraint`/`NegativeOrthant` template classes changed to `EqualityConstraintTpl`/`NegativeOrthantTpl`

include/proxsuite-nlp/math.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#include <Eigen/Core>
66
#include <limits>
77
#include <vector>
8+
#include <cassert>
89

910
namespace proxsuite {
1011
namespace nlp {

0 commit comments

Comments
 (0)