Loading...
Searching...
No Matches
Query_result.h
1/* This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT.
2 * See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details.
3 * Author(s): Siargey Kachanovich
4 *
5 * Copyright (C) 2019 Inria
6 *
7 * Modification(s):
8 * - YYYY/MM Author: Description of the modification
9 */
10
11#ifndef QUERY_RESULT_H_
12#define QUERY_RESULT_H_
13
14namespace Gudhi {
15
16namespace coxeter_triangulation {
17
25template <class Simplex_handle>
29 // Simplex_handle face;
31 Eigen::VectorXd intersection;
33 bool success;
34};
35
36} // namespace coxeter_triangulation
37
38} // namespace Gudhi
39
40#endif
The result of a query by an oracle such as Implicit_manifold_intersection_oracle.
Definition: Query_result.h:26
bool success
True if the query simplex intersects the manifold.
Definition: Query_result.h:33
Eigen::VectorXd intersection
The potentially lower-dimensional face of the query simplex that contains the intersection point....
Definition: Query_result.h:31