From 0741c3eabbfece1c73ac76aa44adbe2904b6124d Mon Sep 17 00:00:00 2001 From: mcarrier Date: Sat, 23 Jun 2018 04:59:39 +0000 Subject: git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/kernels@3628 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 12f32a1c8ca31e7e0a40e1c3502e2a3d810d5bc5 --- .../include/gudhi/Weight_functions.h | 81 ---------------------- 1 file changed, 81 deletions(-) delete mode 100644 src/Persistence_representations/include/gudhi/Weight_functions.h (limited to 'src/Persistence_representations/include/gudhi/Weight_functions.h') diff --git a/src/Persistence_representations/include/gudhi/Weight_functions.h b/src/Persistence_representations/include/gudhi/Weight_functions.h deleted file mode 100644 index 78de406d..00000000 --- a/src/Persistence_representations/include/gudhi/Weight_functions.h +++ /dev/null @@ -1,81 +0,0 @@ -/* This file is part of the Gudhi Library. The Gudhi library - * (Geometric Understanding in Higher Dimensions) is a generic C++ - * library for computational topology. - * - * Author(s): Mathieu Carriere - * - * Copyright (C) 2018 INRIA (France) - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -#ifndef WEIGHT_FUNCTIONS_H_ -#define WEIGHT_FUNCTIONS_H_ - -// gudhi include -#include -#include - -// standard include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace Gudhi { -namespace Persistence_representations { - -/** \fn static double pss_weight(std::pair p) - * \brief Persistence Scale Space kernel weight function. - * \ingroup Persistence_representations - * - * @param[in] p point in 2D. - */ -static double pss_weight(std::pair p) {if(p.second > p.first) return 1; else return -1;} - -/** \fn static double linear_weight(std::pair p) - * \brief Linear weight function. - * \ingroup Persistence_representations - * - * @param[in] p point in 2D. - */ -static double linear_weight(std::pair p) {return std::abs(p.second - p.first);} - -/** \fn static double const_weight(std::pair p) - * \brief Constant weight function. - * \ingroup Persistence_representations - * - * @param[in] p point in 2D. - */ -static double const_weight(std::pair p) {return 1;} - -/** \fn static std::function) > arctan_weight(double C, double alpha) - * \brief Returns the arctan weight function with parameters C and alpha. - * \ingroup Persistence_representations - * - * @param[in] C positive constant. - * @param[in] alpha positive power. - */ -static std::function) > arctan_weight(double C, double alpha) {return [=](std::pair p){return C * atan(std::pow(std::abs(p.second - p.first), alpha));};} - -} // namespace Persistence_representations -} // namespace Gudhi - -#endif // WEIGHT_FUNCTIONS_H_ -- cgit v1.2.3