Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef CARTOGRAPHER_COMMON_CERES_SOLVER_OPTIONS_H_
00018 #define CARTOGRAPHER_COMMON_CERES_SOLVER_OPTIONS_H_
00019
00020 #include "cartographer/common/lua_parameter_dictionary.h"
00021 #include "cartographer/common/proto/ceres_solver_options.pb.h"
00022 #include "ceres/ceres.h"
00023
00024 namespace cartographer {
00025 namespace common {
00026
00027 proto::CeresSolverOptions CreateCeresSolverOptionsProto(
00028 common::LuaParameterDictionary* parameter_dictionary);
00029
00030 ceres::Solver::Options CreateCeresSolverOptions(
00031 const proto::CeresSolverOptions& proto);
00032
00033 }
00034 }
00035
00036 #endif // CARTOGRAPHER_COMMON_CERES_SOLVER_OPTIONS_H_