mirror of https://github.com/CGAL/cgal
cleanup
This commit is contained in:
parent
6e214c5f4a
commit
43fb0a74e5
|
|
@ -1 +0,0 @@
|
|||
OLD
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
#include <iostream>
|
||||
#include <CGAL/basic.h>
|
||||
#ifdef CGAL_HAS_GMP_ARITHMETIC_KERNEL
|
||||
#include <CGAL/Gmpfr_interval.h>
|
||||
#include <CGAL/Test/_test_algebraic_structure.h>
|
||||
#include <CGAL/Test/_test_real_embeddable.h>
|
||||
#include <CGAL/Test/_test_interval.h>
|
||||
|
||||
int main() {
|
||||
std::cout << "TEST Gmpfr_interval "; std::cout.flush();
|
||||
typedef CGAL::Gmpfr_interval NT;
|
||||
typedef CGAL::Field_with_sqrt_tag Tag;
|
||||
typedef CGAL::Tag_false Is_exact;
|
||||
CGAL::test_algebraic_structure<NT,Tag, Is_exact>();
|
||||
CGAL::test_algebraic_structure<NT,Tag, Is_exact>(NT(4),NT(6),NT(15));
|
||||
CGAL::test_algebraic_structure<NT,Tag, Is_exact>(NT(-4),NT(6),NT(15));
|
||||
CGAL::test_algebraic_structure<NT,Tag, Is_exact>(NT(4),NT(-6),NT(15));
|
||||
CGAL::test_algebraic_structure<NT,Tag, Is_exact>(NT(-4),NT(-6),NT(15));
|
||||
CGAL::test_algebraic_structure<NT,Tag, Is_exact>(NT(4),NT(6),NT(-15));
|
||||
CGAL::test_algebraic_structure<NT,Tag, Is_exact>(NT(-4),NT(6), NT(15));
|
||||
CGAL::test_algebraic_structure<NT,Tag, Is_exact>(NT(4),NT(-6),NT(-15));
|
||||
CGAL::test_algebraic_structure<NT,Tag, Is_exact>(NT(-4),NT(-6),NT(-15));
|
||||
|
||||
CGAL::test_real_embeddable<NT>();
|
||||
CGAL::test_interval<NT>();
|
||||
|
||||
std::cout << "OK" << std::endl;
|
||||
return 0;
|
||||
}
|
||||
|
||||
#else
|
||||
int main() { return 0; }
|
||||
#endif
|
||||
Loading…
Reference in New Issue