mv package from experimental to trunk

will replace currently undocumented stuff in NT package
This commit is contained in:
Michael Hemmer
2010-02-11 13:45:57 +00:00
parent 92398770a5
commit fca24ab9f0
16 changed files with 1242 additions and 0 deletions
@@ -0,0 +1,18 @@
#include <iostream>
#include <CGAL/basic.h>
#include <CGAL/Arithmetic_kernel.h>
#if defined(CGAL_HAVE_DEFAULT_ARITHMETIC_KERNEL)
#include <CGAL/Test/_test_arithmetic_kernel.h>
int main() {
typedef CGAL::Arithmetic_kernel AK;
CGAL::test_arithmetic_kernel<AK>();
return 0;
}
#else
int main() { return 0; }
#endif