summaryrefslogtreecommitdiff
path: root/src/Coxeter_triangulation/include/gudhi/Functions/Constant_function.h
blob: e5b78b04c642f044af132a2215efdbd051e8e4a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*    This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT.
 *    See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details.
 *    Author(s):       Siargey Kachanovich
 *
 *    Copyright (C) 2019 Inria
 *
 *    Modification(s):
 *      - YYYY/MM Author: Description of the modification
 */

#ifndef FUNCTIONS_CONSTANT_FUNCTION_H_
#define FUNCTIONS_CONSTANT_FUNCTION_H_

#include <gudhi/Functions/Function.h>
#include <Eigen/Dense>

namespace Gudhi {

namespace coxeter_triangulation {

/** 
 * \class Constant_function 
 * \brief A class that encodes a constant function from R^d to R^k.
 * This class does not have any implicit manifold in correspondence.
 *
 * \ingroup coxeter_triangulation
 */
struct Constant_function : public Function {

  /** \brief Value of the function at a specified point. The value is constant.
   * @param[in] p The input point. The dimension needs to coincide with the ambient dimension.
   */
  virtual Eigen::VectorXd operator()(const Eigen::VectorXd& p) const override {
    Eigen::VectorXd result = value_;
    return result;
  }
  
  /** \brief Returns the domain dimension. Same as the ambient dimension of the sphere. */
  virtual std::size_t amb_d() const override {return d_;};

  /** \brief Returns the codomain dimension. Same as the codimension of the sphere. */
  virtual std::size_t cod_d() const override {return k_;};

  /** \brief No seed point is available. Throws an exception on evocation. */
  virtual Eigen::VectorXd seed() const override {
    throw "Seed invoked on a constant function.\n";
  }

  Constant_function() {}
  
  /** 
   * \brief Constructor of a constant function from R^d to R^m.
   *
   * @param[in] d The domain dimension.
   * @param[in] k The codomain dimension.
   * @param[in] value The constant value of the function.
   */
  Constant_function(std::size_t d, std::size_t k, const Eigen::VectorXd& value)
    : d_(d), k_(k), value_(value) {}
  
  std::size_t d_, k_;
  Eigen::VectorXd value_;
};

} // namespace coxeter_triangulation

} // namespace Gudhi

#endif