| commit | 7ea6bb92f4899b5205309eb936030b3c702d81d2 | [log] [tgz] |
|---|---|---|
| author | Sameer Agarwal <sameeragarwal@google.com> | Mon Feb 24 12:02:00 2014 -0800 |
| committer | Sameer Agarwal <sameeragarwal@google.com> | Mon Feb 24 12:02:00 2014 -0800 |
| tree | 341460932a4413ab11f6a642f85a716199e04256 | |
| parent | 1da9292016581928b0c5205dfe9ca459fc484a31 [diff] |
Fix a type bug in more_garbow_hillstrom.cc. Change-Id: Ia830db6cdfd15b8e90d7a3655eeab8cf6a463817
diff --git a/examples/more_garbow_hillstrom.cc b/examples/more_garbow_hillstrom.cc index b93e772..03ecb9a 100644 --- a/examples/more_garbow_hillstrom.cc +++ b/examples/more_garbow_hillstrom.cc
@@ -58,7 +58,7 @@ namespace ceres { namespace examples { -const int kDoubleMax = std::numeric_limits<double>::max(); +const double kDoubleMax = std::numeric_limits<double>::max(); #define BEGIN_MGH_PROBLEM(name, num_parameters, num_residuals) \ struct name { \