submaps_test.cc
Go to the documentation of this file.
00001 /*
00002  * Copyright 2016 The Cartographer Authors
00003  *
00004  * Licensed under the Apache License, Version 2.0 (the "License");
00005  * you may not use this file except in compliance with the License.
00006  * You may obtain a copy of the License at
00007  *
00008  *      http://www.apache.org/licenses/LICENSE-2.0
00009  *
00010  * Unless required by applicable law or agreed to in writing, software
00011  * distributed under the License is distributed on an "AS IS" BASIS,
00012  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00013  * See the License for the specific language governing permissions and
00014  * limitations under the License.
00015  */
00016 
00017 #include "cartographer/mapping/submaps.h"
00018 
00019 #include <cmath>
00020 
00021 #include "gtest/gtest.h"
00022 
00023 namespace cartographer {
00024 namespace mapping {
00025 namespace {
00026 
00027 // Converts the given log odds to a probability. This function is known to be
00028 // very slow, because expf is incredibly slow.
00029 inline float Expit(float log_odds) {
00030   const float exp_log_odds = std::exp(log_odds);
00031   return exp_log_odds / (1.f + exp_log_odds);
00032 }
00033 
00034 TEST(SubmapsTest, LogOddsConversions) {
00035   EXPECT_NEAR(Expit(Logit(kMinProbability)), kMinProbability, 1e-6);
00036   EXPECT_NEAR(Expit(Logit(kMaxProbability)), kMaxProbability, 1e-6);
00037   EXPECT_NEAR(Expit(Logit(0.5)), 0.5, 1e-6);
00038 }
00039 
00040 }  // namespace
00041 }  // namespace mapping
00042 }  // namespace cartographer


cartographer
Author(s): The Cartographer Authors
autogenerated on Thu May 9 2019 02:27:36