workaround for a doxygen bug: remove space after /!* to avoid a verbatim env
this happens if you have an empty line or the text directly after /!* to find them in the generated documentation, grep for "pre class=\"fragment\"" (a few of them are legitimate however)
This commit is contained in:
@@ -47,22 +47,22 @@ public:
|
||||
/// \name Creation
|
||||
/// @{
|
||||
|
||||
/*!
|
||||
/*!
|
||||
constructor which initializes with zero.
|
||||
*/
|
||||
Residue();
|
||||
|
||||
/*!
|
||||
/*!
|
||||
copy constructor.
|
||||
*/
|
||||
Residue(const Residue& m);
|
||||
|
||||
/*!
|
||||
/*!
|
||||
constructor which initializes with \f$ i\mod p\f$.
|
||||
*/
|
||||
Residue(int i);
|
||||
|
||||
/*!
|
||||
/*!
|
||||
constructor which initializes with \f$ i\mod p\f$.
|
||||
*/
|
||||
Residue(long i);
|
||||
@@ -72,78 +72,78 @@ Residue(long i);
|
||||
/// \name Operations
|
||||
/// @{
|
||||
|
||||
/*!
|
||||
/*!
|
||||
sets the current prime to the given value and returns the old prime.
|
||||
*/
|
||||
static int set_current_prime(int p);
|
||||
|
||||
/*!
|
||||
/*!
|
||||
returns the value of the current prime.
|
||||
*/
|
||||
static int get_current_prime();
|
||||
|
||||
/*!
|
||||
/*!
|
||||
returns the unique representative within the range
|
||||
\f$ [-p/2,p/2]\f$, where \f$ p\f$ is the current prime.
|
||||
*/
|
||||
int get_value() const;
|
||||
|
||||
/*!
|
||||
/*!
|
||||
|
||||
*/
|
||||
Residue operator+(Residue a);
|
||||
|
||||
/*!
|
||||
/*!
|
||||
|
||||
*/
|
||||
Residue operator-(Residue a);
|
||||
|
||||
/*!
|
||||
/*!
|
||||
|
||||
*/
|
||||
Residue operator+(Residue a,Residue b);
|
||||
|
||||
/*!
|
||||
/*!
|
||||
|
||||
*/
|
||||
Residue operator-(Residue a,Residue b);
|
||||
|
||||
/*!
|
||||
/*!
|
||||
|
||||
*/
|
||||
Residue operator*(Residue a,Residue b);
|
||||
|
||||
/*!
|
||||
/*!
|
||||
|
||||
*/
|
||||
Residue operator/(Residue a,Residue b);
|
||||
|
||||
/*!
|
||||
/*!
|
||||
|
||||
*/
|
||||
Residue & operator+=(Residue a);
|
||||
|
||||
/*!
|
||||
/*!
|
||||
|
||||
*/
|
||||
Residue & operator-=(Residue a);
|
||||
|
||||
/*!
|
||||
/*!
|
||||
|
||||
*/
|
||||
Residue & operator*=(Residue a);
|
||||
|
||||
/*!
|
||||
/*!
|
||||
|
||||
*/
|
||||
Residue & operator/=(Residue a);
|
||||
|
||||
/*!
|
||||
/*!
|
||||
|
||||
*/
|
||||
Residue operator==(Residue a,Residue b);
|
||||
|
||||
/*!
|
||||
/*!
|
||||
|
||||
*/
|
||||
Residue operator!=(Residue a,Residue b);
|
||||
|
||||
@@ -22,17 +22,17 @@ public:
|
||||
/// \name Types
|
||||
/// @{
|
||||
|
||||
/*!
|
||||
/*!
|
||||
|
||||
*/
|
||||
typedef ModularTraits::Residue_type result_type;
|
||||
|
||||
/*!
|
||||
/*!
|
||||
|
||||
*/
|
||||
typedef ModularTraits::Type argument_type;
|
||||
|
||||
/*!
|
||||
/*!
|
||||
|
||||
computes \f$ \varphi(x)\f$.
|
||||
|
||||
|
||||
+3
-3
@@ -17,17 +17,17 @@ public:
|
||||
/// \name Types
|
||||
/// @{
|
||||
|
||||
/*!
|
||||
/*!
|
||||
|
||||
*/
|
||||
typedef ModularTraits::Type result_type;
|
||||
|
||||
/*!
|
||||
/*!
|
||||
|
||||
*/
|
||||
typedef ModularTraits::Residue_type argument_type;
|
||||
|
||||
/*!
|
||||
/*!
|
||||
|
||||
computes \f$ \varphi^{-1}(x)\f$.
|
||||
|
||||
|
||||
@@ -22,12 +22,12 @@ public:
|
||||
/// A model of `ModularTraits` is supposed to provide:
|
||||
/// @{
|
||||
|
||||
/*!
|
||||
/*!
|
||||
The associated type.
|
||||
*/
|
||||
typedef unspecified_type Type ;
|
||||
|
||||
/*!
|
||||
/*!
|
||||
|
||||
Tag indicating whether the associated type is modularizable.
|
||||
|
||||
@@ -35,7 +35,7 @@ This is either `CGAL::Tag_true` or `CGAL::Tag_false`.
|
||||
*/
|
||||
typedef unspecified_type Is_modularizable;
|
||||
|
||||
/*!
|
||||
/*!
|
||||
|
||||
The type of the modular image.
|
||||
|
||||
@@ -52,12 +52,12 @@ typedef unspecified_type Residue_type;
|
||||
/// `CGAL::Null_functor`.
|
||||
/// @{
|
||||
|
||||
/*!
|
||||
/*!
|
||||
A model of `ModularTraits::ModularImage`
|
||||
*/
|
||||
typedef unspecified_type Modular_image;
|
||||
|
||||
/*!
|
||||
/*!
|
||||
A model of `ModularTraits::ModularImageRepresentative`
|
||||
*/
|
||||
typedef unspecified_type Modular_image_representative;
|
||||
|
||||
Reference in New Issue
Block a user