Skip to content

Commit 61b6a1d

Browse files
authored
Merge pull request #316 from quentinll/topic/assert
include cassert in fwd.hpp
2 parents 8f52f5d + 92e3a4f commit 61b6a1d

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1313
* Change from torch.Tensor to torch.empty or torch.tensor and specify type explicitly ([#308](https://github.com/Simple-Robotics/proxsuite/pull/308))
1414
* Fix handling of batch of inequality constraints in `QPFunctionFn_infeas`. The derivations in qplayer was done for single-sided constraints, that's the reason for the concatenation but the expansion of batchsize dimension was not working properly ([#308](https://github.com/Simple-Robotics/proxsuite/pull/308))
1515
* Switch from self-hosted runner for macos-14-ARM to runner from github ([#306](https://github.com/Simple-Robotics/proxsuite/pull/306))
16+
* Fix missing cassert for some compilers ([#316](https://github.com/Simple-Robotics/proxsuite/pull/316))
1617

1718
## [0.6.4] - 2024-03-01
1819

include/proxsuite/fwd.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
#endif
3030

3131
#include <Eigen/Core>
32+
#include <cassert>
3233

3334
#ifdef PROXSUITE_EIGEN_CHECK_MALLOC
3435
#ifdef EIGEN_RUNTIME_NO_MALLOC_WAS_NOT_DEFINED

0 commit comments

Comments
 (0)