Loading...
Searching...
No Matches
Topological_data_with_averages.h
1
2/* This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT.
3 * See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details.
4 * Author(s): Pawel Dlotko
5 *
6 * Copyright (C) 2016 Inria
7 *
8 * Modification(s):
9 * - YYYY/MM Author: Description of the modification
10 */
11
12#ifndef CONCEPT_TOPOLOGICAL_DATA_WITH_AVERAGES_H_
13#define CONCEPT_TOPOLOGICAL_DATA_WITH_AVERAGES_H_
14
15namespace Gudhi {
16
17namespace Persistence_representations {
18
24 public:
25 void compute_average(const std::vector<Topological_data_with_averages*>& to_average);
26};
27
28} // namespace Persistence_representations
29
30} // namespace Gudhi
31
32#endif // CONCEPT_TOPOLOGICAL_DATA_WITH_AVERAGES_H_
The concept Topological_data_with_averages describes the requirements for a type to implement a conta...
Definition: Topological_data_with_averages.h:23