Skip to content

Commit 744564e

Browse files
committed
Add cassert explicitly
1 parent 80d1a0b commit 744564e

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

include/mathtoolbox/backtracking-line-search.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
#ifndef MATHTOOLBOX_BACKTRACKING_LINE_SEARCH_HPP
22
#define MATHTOOLBOX_BACKTRACKING_LINE_SEARCH_HPP
33

4-
#include <Eigen/Core>
4+
#include <caasert>
55
#include <functional>
66
#include <iostream>
7+
#include <Eigen/Core>
78

89
namespace mathtoolbox
910
{

include/mathtoolbox/rbf-interpolation.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
#ifndef MATHTOOLBOX_RBF_INTERPOLATION_HPP
22
#define MATHTOOLBOX_RBF_INTERPOLATION_HPP
33

4-
#include <Eigen/Core>
4+
#include <caasert>
55
#include <cmath>
66
#include <functional>
77
#include <memory>
88
#include <vector>
9+
#include <Eigen/Core>
910

1011
namespace mathtoolbox
1112
{

include/mathtoolbox/strong-wolfe-conditions-line-search.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#ifndef MATHTOOLBOX_STRONG_WOLFE_CONDITIONS_LINE_SEARCH_HPP
22
#define MATHTOOLBOX_STRONG_WOLFE_CONDITIONS_LINE_SEARCH_HPP
33

4-
#include <Eigen/Core>
54
#include <cassert>
65
#include <functional>
76
#include <iostream>
7+
#include <Eigen/Core>
88

99
#define MATHTOOLBOX_VERBOSE_LINE_SEARCH_WARNINGS
1010

0 commit comments

Comments
 (0)