fix linking

This commit is contained in:
Andreas Fabri 2012-11-02 20:26:43 +00:00
parent d981d9aadf
commit 6e5ba1ed81
2 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ namespace CGAL {
/*!
\ingroup nt_ralgebraic
The function `make_root_of_2` constructs an algebraic number of degree 2 over a
The function `make_root_of_2()` constructs an algebraic number of degree 2 over a
ring number type.
Returns the smallest real root of the polynomial \f$ aX^2+bX+c\f$ if
@ -55,7 +55,7 @@ make_root_of_2(const RT& a, const RT& b, const RT& c, bool s);
/*!
\ingroup nt_ralgebraic
The function `make_root_of_2` constructs an algebraic number of degree 2 over a
The function `make_root_of_2()` constructs an algebraic number of degree 2 over a
ring number type.
Constructs the number \f$ \alpha+ \beta\sqrt{\gamma}\f$.
@ -81,7 +81,7 @@ namespace CGAL {
/*!
\ingroup nt_ralgebraic
The function `make_sqrt` constructs a square root of a given value of type \f$ RT\f$.
The function `make_sqrt()` constructs a square root of a given value of type \f$ RT\f$.
Depending on the type \f$ RT\f$ the square root may be returned in a new type that
can represent algebraic extensions of degree \f$ 2\f$.

View File

@ -83,7 +83,7 @@ The extension of a `UniqueFactorizationDomain` or
If `NT` is a model of `RealEmbeddable` the type `Sqrt_extension` is also considered as `RealEmbeddable`. However, by default it is not allowed to compare values from different extensions for efficiency reasons. In case such a comparison becomes necessary, use the member function compare with the according Boolean flag.
If such a comparison is a very frequent case, override the default of `DifferentExtensionComparable` by giving \tag_true as third template parameter. This effects the behavior of compare functions as well as the compare operators.
The fourth template argument, `FilterPredicates`, triggers an internal filter that may speed up comparisons and sign computations. In case `FilterPredicates` is set to \tag_true the type first computes a double interval containing the represented number and tries to perform the comparison or sign computation using this interval. Once computed, this interval is stored by the corresponding `Sqrt_extension` object for further usage. Note that this internal filter is switched off by default, since it may conflict with other filtering methods, such as `CGAL::Lazy_exact_nt<Sqrt_extension>`.
The fourth template argument, `FilterPredicates`, triggers an internal filter that may speed up comparisons and sign computations. In case `FilterPredicates` is set to \tag_true the type first computes a double interval containing the represented number and tries to perform the comparison or sign computation using this interval. Once computed, this interval is stored by the corresponding `Sqrt_extension` object for further usage. Note that this internal filter is switched off by default, since it may conflict with other filtering methods, such as `Lazy_exact_nt<Sqrt_extension>`.
In case `NT` is not `RealEmbeddable`, `DifferentExtensionComparable` as well as `FilterPredicates` have no effect.