mirror of https://github.com/CGAL/cgal
mv Polynomial/ipower.h Algebraic_foundations/ipower.h
since it is a more general function used in several packages (from EXACUS)
This commit is contained in:
parent
f2c4cd9681
commit
580a68180f
|
|
@ -15,6 +15,7 @@ Algebraic_foundations/examples/Algebraic_foundations/fraction_traits.cpp -text
|
||||||
Algebraic_foundations/examples/Algebraic_foundations/implicit_interoperable_dispatch.cpp -text
|
Algebraic_foundations/examples/Algebraic_foundations/implicit_interoperable_dispatch.cpp -text
|
||||||
Algebraic_foundations/examples/Algebraic_foundations/integralize.cpp -text
|
Algebraic_foundations/examples/Algebraic_foundations/integralize.cpp -text
|
||||||
Algebraic_foundations/examples/Algebraic_foundations/interoperable.cpp -text
|
Algebraic_foundations/examples/Algebraic_foundations/interoperable.cpp -text
|
||||||
|
Algebraic_foundations/include/CGAL/ipower.h -text
|
||||||
Algebraic_foundations/package_info/Algebraic_foundations/maintainer -text
|
Algebraic_foundations/package_info/Algebraic_foundations/maintainer -text
|
||||||
Algebraic_foundations/test/Algebraic_foundations/CMakeLists.txt -text
|
Algebraic_foundations/test/Algebraic_foundations/CMakeLists.txt -text
|
||||||
Algebraic_kernel_d/benchmark/Algebraic_kernel_d/Algebraic_curve_kernel_2.cpp -text
|
Algebraic_kernel_d/benchmark/Algebraic_kernel_d/Algebraic_curve_kernel_2.cpp -text
|
||||||
|
|
@ -3206,7 +3207,6 @@ Polynomial/include/CGAL/Polynomial/Coercion_traits.h -text
|
||||||
Polynomial/include/CGAL/Polynomial/bezout_matrix.h -text
|
Polynomial/include/CGAL/Polynomial/bezout_matrix.h -text
|
||||||
Polynomial/include/CGAL/Polynomial/determinant.h -text
|
Polynomial/include/CGAL/Polynomial/determinant.h -text
|
||||||
Polynomial/include/CGAL/Polynomial/hgdelta_update.h -text
|
Polynomial/include/CGAL/Polynomial/hgdelta_update.h -text
|
||||||
Polynomial/include/CGAL/Polynomial/ipower.h -text
|
|
||||||
Polynomial/include/CGAL/Polynomial/may_have_common_factor.h -text
|
Polynomial/include/CGAL/Polynomial/may_have_common_factor.h -text
|
||||||
Polynomial/include/CGAL/Polynomial/modular_filter.h -text
|
Polynomial/include/CGAL/Polynomial/modular_filter.h -text
|
||||||
Polynomial/include/CGAL/Polynomial/resultant.h -text
|
Polynomial/include/CGAL/Polynomial/resultant.h -text
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
#include <CGAL/Algebraic_kernel_d/Descartes.h>
|
#include <CGAL/Algebraic_kernel_d/Descartes.h>
|
||||||
#include <CGAL/Algebraic_kernel_d/Real_roots.h>
|
#include <CGAL/Algebraic_kernel_d/Real_roots.h>
|
||||||
#include <CGAL/Algebraic_kernel_d/refine_zero_against.h>
|
#include <CGAL/Algebraic_kernel_d/refine_zero_against.h>
|
||||||
#include <CGAL/Polynomial/ipower.h>
|
#include <CGAL/ipower.h>
|
||||||
|
|
||||||
CGAL_BEGIN_NAMESPACE
|
CGAL_BEGIN_NAMESPACE
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
#define CGAL_ALGEBRAIC_KERNEL_D_CONSTRUCT_BINARY_H
|
#define CGAL_ALGEBRAIC_KERNEL_D_CONSTRUCT_BINARY_H
|
||||||
|
|
||||||
#include <CGAL/basic.h>
|
#include <CGAL/basic.h>
|
||||||
#include <CGAL/Polynomial/ipower.h>
|
#include <CGAL/ipower.h>
|
||||||
|
|
||||||
#ifdef CGAL_USE_LEDA
|
#ifdef CGAL_USE_LEDA
|
||||||
#include <CGAL/leda_integer.h>
|
#include <CGAL/leda_integer.h>
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
#include <CGAL/basic.h>
|
#include <CGAL/basic.h>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
|
||||||
#include <CGAL/Polynomial/ipower.h>
|
#include <CGAL/ipower.h>
|
||||||
/*#include <NiX/basic.h>
|
/*#include <NiX/basic.h>
|
||||||
#include <NiX/number_type_utils.h>*/
|
#include <NiX/number_type_utils.h>*/
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,10 +16,6 @@ include $(CGAL_MAKEFILE)
|
||||||
CXXFLAGS = \
|
CXXFLAGS = \
|
||||||
-Iinclude \
|
-Iinclude \
|
||||||
-I../../include \
|
-I../../include \
|
||||||
-I../../../Algebraic_foundations/include \
|
|
||||||
-I../../../Number_types/include \
|
|
||||||
-I../../../Modular_arithmetic/include \
|
|
||||||
-I../../../Polynomial/include \
|
|
||||||
$(CGAL_CXXFLAGS) \
|
$(CGAL_CXXFLAGS) \
|
||||||
$(LONG_NAME_PROBLEM_CXXFLAGS)
|
$(LONG_NAME_PROBLEM_CXXFLAGS)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
#ifndef CGAL_POLYNOMIAL_CGALi_TYPE_H
|
#ifndef CGAL_POLYNOMIAL_CGALi_TYPE_H
|
||||||
#define CGAL_POLYNOMIAL_CGALi_TYPE_H
|
#define CGAL_POLYNOMIAL_CGALi_TYPE_H
|
||||||
|
|
||||||
#include <CGAL/Polynomial/ipower.h>
|
#include <CGAL/ipower.h>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
CGAL_BEGIN_NAMESPACE
|
CGAL_BEGIN_NAMESPACE
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@
|
||||||
#include <CGAL/basic.h>
|
#include <CGAL/basic.h>
|
||||||
#include <CGAL/Polynomial.h>
|
#include <CGAL/Polynomial.h>
|
||||||
|
|
||||||
#include <CGAL/Polynomial/ipower.h>
|
#include <CGAL/ipower.h>
|
||||||
#include <CGAL/Polynomial/hgdelta_update.h>
|
#include <CGAL/Polynomial/hgdelta_update.h>
|
||||||
|
|
||||||
#ifndef CGAL_POLYNOMIAL_PRS_RESULTANT_H
|
#ifndef CGAL_POLYNOMIAL_PRS_RESULTANT_H
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue