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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
/*
This file contains docstrings for use in the Python bindings.
Do not edit! They were automatically extracted by ../gendoc.sh.
*/
#if defined(__GNUG__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-variable"
#endif
namespace regina::python::doc {
// Docstring regina::python::doc::DoubleDescription
static const char *DoubleDescription =
R"doc(Implements a modified double description method for polytope vertex
enumeration. For details of the underlying algorithm, see "Optimizing
the double description method for normal surface enumeration",
Benjamin A. Burton, Math. Comp. 79 (2010), 453-484.
All routines of interest within this class are static; no object of
this class should ever be created.)doc";
namespace DoubleDescription_ {
// Docstring regina::python::doc::DoubleDescription_::enumerate
static const char *enumerate =
R"doc(Determines the extremal rays of the intersection of the
*n*-dimensional non-negative orthant with the given linear subspace.
The resulting rays will be of the class *RayClass*, and will be passed
into the given action function one at a time.
The non-negative orthant is an *n*-dimensional cone with its vertex at
the origin. The extremal rays of this cone are the *n* non-negative
coordinate axes. This cone also has *n* facets, where the *i*th facet
is the non-negative orthant of the plane perpendicular to the *i*th
coordinate axis.
This routine takes a linear subspace, defined by the intersection of a
set of hyperplanes through the origin (this subspace is described as a
matrix, with each row giving the equation for one hyperplane).
The purpose of this routine is to compute the extremal rays of the new
cone formed by intersecting the original cone with this linear
subspace. The resulting list of extremal rays will contain no
duplicates or redundancies.
Parameter *constraints* may contain a set of validity constraints, in
which case this routine will only return _valid_ extremal rays. Each
validity constraint is of the form "an extremal ray may only lie
outside at most one of these facets of the original cone"; see the
ValidityConstraints class for details. These contraints have the
important property that, although validity is not preserved under
convex combination, _invalidity_ is.
An optional progress tracker may be passed. If so, this routine will
update the percentage progress and poll for cancellation requests. It
will be assumed that an appropriate stage has already been declared
via ProgressTracker::newStage() before this routine is called, and
that ProgressTracker::setFinished() will be called after this routine
returns.
For each of the resulting extremal rays, this routine will call
*action* (which must be a function or some other callable object).
This action should return ``void``, and must take exactly one
argument, which will be the extremal ray stored using *RayClass*. The
argument will be passed as an rvalue; a typical *action* would take it
as an rvalue reference (RayClass&&) and move its contents into some
other more permanent storage.
Precondition:
The template argument RayClass is derived from (or equal to)
Vector<T>, where *T* is one of Regina's arbitrary-precision
integer classes (Integer or LargeInteger).
Python:
There are two versions of this function available in Python. The
first version is the same as the C++ function; here you must pass
*action*, which may be a pure Python function. The second form
does not have an *action* argument; instead you call
``enumerate(subspace, constraints, tracker, initialRows)``, and it
returns a Python list containing all extremal rays. In both
versions, the argument *RayClass* is fixed as VectorInt. The
global interpreter lock will be released while this function runs,
so you can use it with Python-based multithreading.
Parameter ``action``:
a function (or other callable object) that will be called for each
extremal ray. This function must take a single argument, which
will be passed as an rvalue of type RayClass.
Parameter ``subspace``:
a matrix defining the linear subspace to intersect with the given
cone. Each row of this matrix is the equation for one of the
hyperplanes whose intersection forms this linear subspace. The
number of columns in this matrix must be the dimension of the
overall space in which we are working.
Parameter ``constraints``:
a set of validity constraints as described above, or
ValidityConstraints::none if none should be imposed.
Parameter ``tracker``:
a progress tracker through which progress will be reported, or
``None`` if no progress reporting is required.
Parameter ``initialRows``:
specifies how many initial rows of *subspace* are to be processed
in the precise order in which they appear. The remaining rows will
be sorted using the PosOrder class before they are processed.)doc";
}
} // namespace regina::python::doc
#if defined(__GNUG__)
#pragma GCC diagnostic pop
#endif
|