1
1
#include < iostream>
2
2
3
+ #include < catch2/catch_test_macros.hpp>
4
+ #include < catch2/generators/catch_generators_all.hpp>
5
+
3
6
#include < Eigen/Core>
4
- #include < catch2/catch.hpp>
5
7
6
8
#include < finitediff.hpp>
7
9
#include < spdlog/spdlog.h>
@@ -18,7 +20,7 @@ TEST_CASE("Test finite difference hessian of quadratic", "[hessian]")
18
20
Eigen::MatrixXd A = Eigen::MatrixXd::Random (n, n);
19
21
Eigen::VectorXd b = Eigen::VectorXd::Random (n);
20
22
21
- const auto f = [&](const Eigen::VectorXd x) -> double {
23
+ const auto f = [&](const Eigen::VectorXd& x) -> double {
22
24
return (x.transpose () * A * x + b.transpose () * x)(0 );
23
25
};
24
26
@@ -36,7 +38,7 @@ TEST_CASE("Test finite difference hessian of quadratic", "[hessian]")
36
38
TEST_CASE (" Test finite difference hessian of Rosenbrock" , " [hessian]" )
37
39
{
38
40
AccuracyOrder accuracy = GENERATE (SECOND, FOURTH, SIXTH, EIGHTH);
39
- const auto f = [](const Eigen::VectorXd x) {
41
+ const auto f = [](const Eigen::VectorXd& x) {
40
42
double t1 = 1 - x[0 ];
41
43
double t2 = (x[1 ] - x[0 ] * x[0 ]);
42
44
return t1 * t1 + 100 * t2 * t2;
@@ -61,7 +63,7 @@ TEST_CASE("Test finite difference hessian of trig", "[hessian]")
61
63
AccuracyOrder accuracy = GENERATE (SECOND, FOURTH, SIXTH, EIGHTH);
62
64
int n = GENERATE (1 , 2 , 4 , 10 , 25 );
63
65
64
- const auto f = [&](const Eigen::VectorXd x) -> double {
66
+ const auto f = [&](const Eigen::VectorXd& x) -> double {
65
67
return x.array ().sin ().matrix ().squaredNorm ();
66
68
};
67
69
0 commit comments