mirror of https://github.com/CGAL/cgal
fixed Arity
This commit is contained in:
parent
bb2ebf011b
commit
a12ae8cdc8
|
|
@ -40,7 +40,8 @@ namespace AlgebraicFunctors {
|
|||
typedef typename AK::Polynomial_1_2 Equation_Line;
|
||||
|
||||
public:
|
||||
typedef void result_type;
|
||||
typedef void result_type;
|
||||
typedef Arity_tag<3> Arity;
|
||||
|
||||
template < class OutputIterator >
|
||||
OutputIterator
|
||||
|
|
@ -82,6 +83,7 @@ namespace AlgebraicFunctors {
|
|||
public:
|
||||
|
||||
typedef Polynomial_for_circles_2_2 result_type;
|
||||
typedef Arity_tag<3> Arity;
|
||||
|
||||
result_type
|
||||
operator()(const RT& xc, const RT& yc, const RT& r_sq) const
|
||||
|
|
@ -98,6 +100,7 @@ namespace AlgebraicFunctors {
|
|||
public:
|
||||
|
||||
typedef Polynomial_1_2 result_type;
|
||||
typedef Arity_tag<3> Arity;
|
||||
|
||||
result_type
|
||||
operator()( const RT& a, const RT& b, const RT& c) const
|
||||
|
|
@ -113,7 +116,8 @@ namespace AlgebraicFunctors {
|
|||
typedef typename AK::Root_for_circles_2_2 Root_for_circles_2_2;
|
||||
|
||||
public:
|
||||
typedef CGAL::Sign result_type;
|
||||
typedef CGAL::Sign result_type;
|
||||
typedef Arity_tag<2> Arity;
|
||||
|
||||
result_type
|
||||
operator()( const Polynomial_for_circles_2_2 & equation,
|
||||
|
|
@ -134,8 +138,9 @@ namespace AlgebraicFunctors {
|
|||
typedef typename AK::Polynomial_for_circles_2_2 Polynomial_for_circles_2_2;
|
||||
|
||||
public:
|
||||
typedef void result_type;
|
||||
|
||||
typedef void result_type;
|
||||
typedef Arity_tag<2> Arity;
|
||||
|
||||
Root_for_circles_2_2
|
||||
operator()(const Polynomial_for_circles_2_2 & c,
|
||||
bool i) const
|
||||
|
|
@ -156,8 +161,9 @@ namespace AlgebraicFunctors {
|
|||
typedef typename AK::Polynomial_for_circles_2_2 Polynomial_for_circles_2_2;
|
||||
|
||||
public:
|
||||
typedef void result_type;
|
||||
|
||||
typedef void result_type;
|
||||
typedef Arity_tag<2> Arity;
|
||||
|
||||
Root_for_circles_2_2
|
||||
operator()(const Polynomial_for_circles_2_2 & c,
|
||||
bool i) const
|
||||
|
|
@ -174,11 +180,12 @@ namespace AlgebraicFunctors {
|
|||
template < class AK >
|
||||
class Compare_x
|
||||
{
|
||||
public:
|
||||
typedef typename AK::Root_for_circles_2_2 Root_for_circles_2_2;
|
||||
typedef typename AK::RT RT;
|
||||
|
||||
public:
|
||||
typedef CGAL::Comparison_result result_type;
|
||||
typedef Arity_tag<2> Arity;
|
||||
|
||||
result_type
|
||||
operator()(const Root_for_circles_2_2& r1,
|
||||
|
|
@ -190,11 +197,12 @@ namespace AlgebraicFunctors {
|
|||
template < class AK >
|
||||
class Compare_y
|
||||
{
|
||||
public:
|
||||
typedef typename AK::Root_for_circles_2_2 Root_for_circles_2_2;
|
||||
typedef typename AK::RT RT;
|
||||
|
||||
|
||||
public:
|
||||
typedef CGAL::Comparison_result result_type;
|
||||
typedef Arity_tag<2> Arity;
|
||||
|
||||
result_type
|
||||
operator()(const Root_for_circles_2_2& r1,
|
||||
|
|
@ -206,11 +214,12 @@ namespace AlgebraicFunctors {
|
|||
template < class AK >
|
||||
class Compare_xy
|
||||
{
|
||||
public:
|
||||
typedef typename AK::Root_for_circles_2_2 Root_for_circles_2_2;
|
||||
typedef typename AK::RT RT;
|
||||
|
||||
public:
|
||||
typedef CGAL::Comparison_result result_type;
|
||||
typedef Arity_tag<2> Arity;
|
||||
|
||||
result_type
|
||||
operator()(const Root_for_circles_2_2& r1,
|
||||
|
|
|
|||
Loading…
Reference in New Issue