Sébastien Loriot
52317dd49f
add python script (replace_CGAL_NAMESPACE.py) to replace CGAL_BEGIN_NAMESPACE and CGAL_END_NAMESPACE
...
by namespace CGAL { and } //namespace CGAL. in all .h and .cpp files
in a directory.
Apply it to all packages in the trunk
Remove macro definition from the config.h file.
2010-06-09 07:37:13 +00:00
Sylvain Pion
3fab8f07fb
Fix \E_* to \E^* thinko/copy-pasto.
...
Remove one more \ccTexHtml as well.
2009-01-03 14:29:04 +00:00
Sylvain Pion
0b1cbeb045
\emptyset is recognized by the HTML converter, so, no need for special treatment.
2009-01-02 17:23:53 +00:00
Bernd Gärtner
83973be1a6
replaced outdated Transform_diff_const iterator by boost variant
2008-10-09 09:42:37 +00:00
Sylvain Pion
c24c588aa5
Include <CGAL/algorithm.h> instead of <CGAL/copy_n.h>.
2008-08-12 12:58:18 +00:00
Sylvain Pion
dc3bf72707
Remove changes.txt files.
2008-07-24 17:47:16 +00:00
Sylvain Pion
e7a7c12d89
Remove (most probably) unused files.
2008-07-22 13:24:04 +00:00
Fernando Cacciola
f93437ca22
Removed *unmodified* auto-generated CMakeLists.txt (now created by create_internal_release)
2008-05-05 14:01:55 +00:00
Andreas Meyer
20315de571
* replaced CGAL_test_assert with ::assert, instead of CGAL_assertion
...
* removed include/Testsuite/assert.h
2008-03-19 13:45:36 +00:00
Fernando Cacciola
b704509dcf
Examples/Demos/Test CMake scripts updated
2008-03-05 21:14:02 +00:00
Fernando Cacciola
a659cd852a
Added project() and conditional test for CGAL_DIR
2008-02-14 15:42:36 +00:00
Fernando Cacciola
14043c43a0
Replaced CGALROOT by CGAL_DIR (the latters is used by CMake automatically)
2008-02-08 17:47:21 +00:00
Fernando Cacciola
afddfc4fca
CMake scripts for demos/examples/test added
2008-02-06 19:06:24 +00:00
Sylvain Pion
1f3a9a01ad
Remove unreachable code (pgCC warnings).
2008-01-20 14:48:37 +00:00
Sylvain Pion
a46b55bf71
The files "changes.txt", "description.txt", "long_description.txt" and "maintainer"
...
are now under /trunk/$Package/package_info/$Package/ .
2007-12-02 15:06:42 +00:00
Andreas Meyer
6623d525eb
* replaced assert in */test/*/*.{cpp,h} with CGAL_test_assertion
...
* replaced #include <assert.h> with the according CGAL/Testsuite/assert.h
2007-11-07 21:35:42 +00:00
Bernd Gärtner
d8954256f1
Cartesian->Homogeneous over ring NT
2007-06-11 12:32:48 +00:00
Andreas Meyer
57ad8202ea
replace Bounded_volume -> Bounding_volume, step (2)
2007-06-05 12:35:12 +00:00
Andreas Meyer
3d216d4abc
replace Bounded_volume -> Bounding_volume, step (1)
2007-06-05 12:29:54 +00:00
Bernd Gärtner
a32c326463
- adapted to QP_solver file location change
2007-04-30 10:13:21 +00:00
Bernd Gärtner
a4b3af3aa2
- adapated to new pricing strategy names
...
- changed default back from full_filtered to partial_filtered
2007-04-19 14:37:32 +00:00
Bernd Gärtner
ff1d8a9700
- adapted to QP_options
2007-04-15 17:35:08 +00:00
Andreas Fabri
6482dbb715
Use new traits classes
2007-04-03 13:25:30 +00:00
Andreas Fabri
cde3085346
cleanup
2007-04-02 10:28:59 +00:00
Andreas Fabri
30471afd54
renamed chapter
2007-04-02 09:35:13 +00:00
Andreas Fabri
8c966805e3
renamed chapter
2007-04-02 09:34:32 +00:00
Bernd Gärtner
52e52d2a76
- tests revised so that no too large coordinates occur (these lead
...
to problems in QP_solver that must be fixed separately)
2007-03-23 15:08:34 +00:00
Bernd Gärtner
ca5b136d24
- validity check of solver removed (solver now does it itself)
2007-03-22 09:49:59 +00:00
Bernd Gärtner
4da02ca171
- switched from partial_filtered to full_filtered pricing for now (the
...
partial one seems to have a bug, and full is not much slower)
2007-03-17 22:07:39 +00:00
Sylvain Pion
847c23a15e
Removing leading and trailing empty lines from all example files.
...
Using the following Perl script:
-----------------------------------------------------
#!/usr/bin/perl
local($/) = undef;
my $text = <>;
$text =~ s/\A\n+//mg;
$text =~ s/\n+\Z/\n/mg;
print "$text";
-----------------------------------------------------
2007-03-10 16:17:17 +00:00
Sylvain Pion
6fb5cb906b
Remove trailing white spaces and end of lines.
...
(using : perl -pi.bak -e 's/\s+$/\n/' */examples/*/*.cpp )
2007-03-10 14:59:41 +00:00
Sylvain Pion
b8b87ab5a5
Actually, the "// file: example_bla.cpp" lines are not needed anymore,
...
since the manual tools know it. So let's just remove them (many were
not uptodate with the filemane anyway).
2007-03-10 14:48:00 +00:00
Bernd Gärtner
9adc56419a
- "changes meaning" error fixed
2007-03-08 14:28:58 +00:00
Bernd Gärtner
96445d2e8d
- obsolete files removed
2007-03-06 18:47:24 +00:00
Bernd Gärtner
5cfbf10443
- code adapted to new QP_solver
...
- added treatment of homogeneous points
- adapted tests accordingly
2007-03-06 13:26:42 +00:00
Andreas Fabri
40a78bb297
.C -> .cpp
2007-02-16 16:33:55 +00:00
Sylvain Pion
2bdfec6cc0
Removal of remaining protect macros : those protecting other CGAL include files.
...
Done using the script Scripts/developer_scripts/cgal_conditional_include_remove.
2007-01-24 18:00:30 +00:00
Sylvain Pion
fb8595b94e
Cleanup : remove ancient CGAL_PROTECT_* macros.
...
It's the compiler's job to optimize preprocessing time.
2007-01-24 17:16:05 +00:00
Sylvain Pion
c03659bc7a
global update of maintainer files
...
(remove Lutz, Sven, Matthias, Geert-Jan...)
2006-12-05 14:01:13 +00:00
Bernd Gärtner
1d33d30b9c
taken care of QP_solver interface change
2006-08-25 08:27:53 +00:00
Bernd Gärtner
e02dab93c4
include changed according to QP_solver file moves
2006-07-11 11:33:19 +00:00
Andreas Fabri
5b8ad90515
changed .C to .cpp in examples
2006-07-09 19:26:01 +00:00
Bernd Gärtner
8b5b3d2798
added new example that shows actual feature, namely the hybrid
...
arithmetic. Unfortunately, this needs the inofficial type CGAL::Double
2006-03-13 12:25:57 +00:00
Bernd Gärtner
ccc0ab6e97
oops, forgot subdir
2006-03-10 12:42:19 +00:00
Bernd Gärtner
d9e740ff1a
example added
2006-03-10 12:34:32 +00:00
Sylvain Pion
86b98eb15b
Remove obsolete filenames from dont_submit files:
...
wrapper.tex, error.txt, .cvsignore
2006-02-19 20:23:51 +00:00
Laurent Saboret
77340051f5
Change CVS keywords to SVN style
2006-02-17 16:03:17 +00:00
Laurent Saboret
db6a8f948c
Change CVS keywords to SVN style
2006-02-16 14:30:13 +00:00
Laurent Saboret
1aad55d4cb
Change CVS keywords to SVN style
2006-02-14 10:08:15 +00:00
Laurent Saboret
541f5f7f0e
Remove .cvsignore files (changed to svn:ignore properties)
2006-02-14 09:20:20 +00:00