[GenericPoseGraph] Proto for pose graph solver config. (#1436)

master
Alexander Belyaev 2018-10-01 16:16:44 +02:00 committed by GitHub
parent 64062ee720
commit 607de03d6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
syntax = "proto3";
import "cartographer/common/proto/ceres_solver_options.proto";
package cartographer.pose_graph.proto;
// Configuration for the non-linear least squares solver.
message SolverConfig {
// If true, logs a summary of the optimization in every iteration.
bool log_solver_summary = 1;
// Options specific for the Ceres solver.
cartographer.common.proto.CeresSolverOptions ceres_options = 2;
}