Ophir Setter
e1453b6fb9
using *_object() to construct functors
2009-02-15 15:07:03 +00:00
Sylvain Pion
9b352c39ba
Remove obsolete file.
2009-01-05 17:22:23 +00:00
Laurent Rineau
157eba63cf
\ccPkgDemo now predend "demo/3.4/" to its argument.
2008-12-10 14:16:12 +00:00
Andreas Fabri
b7305b9bec
Change demo text
2008-12-05 14:54:57 +00:00
Andreas Fabri
2075d61749
don't submit qt3 directory
2008-12-02 08:42:55 +00:00
Andreas Fabri
c9a30d9408
Add demo link
2008-11-26 16:00:07 +00:00
Laurent Rineau
ec9f2e29e5
Update citations (s/07/08/).
...
Let us hope that CGAL-3.4 will be release before 2009!
2008-11-20 22:19:28 +00:00
Laurent Rineau
82b4bcf2c6
demo/Partition_2/ no longer has a demo. That has been merged in the Polygon
...
demo.
2008-10-30 10:46:06 +00:00
Laurent Rineau
f10a590672
Mass-remove vcproj files.
2008-10-21 09:21:22 +00:00
Andreas Fabri
df6276e060
get Qt3 based demo out of the way
2008-10-01 19:43:29 +00:00
Andreas Fabri
64181a9d1c
No need to use the CGAL vector
2008-10-01 19:40:41 +00:00
Laurent Rineau
a9f67f82b5
4th pass to remove CGAL_USE_QT: remove "#ifdef CGAL_USE_QT"/"#endif"
2008-09-09 21:53:57 +00:00
Laurent Rineau
a302cff5c8
Second pass to remove CGAL_USE_QT: remove "#ifndef CGAL_USE_QT"/"#else"/"#endif // CGAL_USE_QT"
2008-09-09 21:42:42 +00:00
Sylvain Pion
d2fb090976
Use object_cast instead of assign
2008-07-29 14:12:25 +00:00
Sylvain Pion
dc3bf72707
Remove changes.txt files.
2008-07-24 17:47:16 +00:00
Sylvain Pion
02c88564aa
Use Boost.Bind instead of CGAL/functional.h .
2008-07-23 07:17:34 +00:00
Sylvain Pion
2eb0d8f9e9
certainly() -> possibly().
2008-07-14 11:16:41 +00:00
Sylvain Pion
9d7a609ff2
Make assertions trigger an error only for *certain* conditions (using CGAL::certainly()).
...
This is useful for interval arithmetic code.
(replay of r44002 with the header order hopefully fixed)
2008-07-10 21:49:17 +00:00
Sylvain Pion
2b4ebf01f7
Undo r44002 as it's buggy
2008-07-06 20:47:29 +00:00
Sylvain Pion
514a17ad4f
Improve the interaction of assertions and interval computations.
...
Things like "CGAL_assertion(denominator != 0)" produced assertion failures for no gain.
So now, the assertion is triggered only if the condition is certain, using CGAL::certainly().
That is, change the following in all assertion files :
((EX)?(static_cast<void>(0)): ::CGAL::assertion_fail( # EX , __FILE__, __LINE__))
to :
(CGAL::certainly(EX)?(static_cast<void>(0)): ::CGAL::assertion_fail( # EX , __FILE__, __LINE__))
2008-07-06 17:05:47 +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
4d1b8d63e3
Remove workarounds and support for the BORLAND compiler.
2008-01-20 20:24:20 +00:00
Sylvain Pion
838dab23ab
Add missing #include <cassert> .
2008-01-20 19:13:05 +00:00
Sylvain Pion
b24108f5fd
Remove #include <cassert> from everywhere under include/CGAL/.
...
CGAL code has to use CGAL assertions instead.
2008-01-20 18:47:19 +00:00
Sylvain Pion
5c551050a5
Remove obsolete VC++ 6 specific code.
2008-01-20 15:27:47 +00:00
Sylvain Pion
cfa600f93e
Fix previously erronously removed closing curly brace...
2008-01-03 22:01:37 +00:00
Sylvain Pion
284cfd9468
More removal of SUNPRO+RW's STL obsolete workarounds:
...
CGAL_CFG_RWSTD_NO_MEMBER_TEMPLATES
2008-01-03 15:19:39 +00:00
Sylvain Pion
88ed563f44
Remove some workarounds for SunPRO + RW's STL:
...
CGAL_CFG_MISSING_TEMPLATE_VECTOR_CONSTRUCTORS_BUG
CGAL_CFG_RWSTD_NO_MEMBER_TEMPLATES (partially so far)
CGAL_make_vector
CGAL_make_list
2008-01-03 14:50:13 +00:00
Sylvain Pion
dc36f95429
Remove warning for empty body of for loop
2007-12-30 15:11:49 +00:00
Sylvain Pion
d49e006c53
Remove default argument "0" to calls to assertion_fail() et al,
...
as the default is now the empty string "".
It should fix the problem that we have lost the assertion messages
(seeing "what(): basic_string::_S_construct NULL not valid" instead),
for packages that use package-specific assertion macros.
2007-12-21 21:58:27 +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
Andreas Fabri
20d0950686
When reading an object recenter the window
2007-10-09 11:52:15 +00:00
Marc Glisse
a9a80e947e
Fix RWSTD workaround.
2007-08-24 14:29:39 +00:00
Camille Wormser
5a8c4f8280
Adds the Equal_2 predicate to the Partition_2 traits
...
to fulfill the new requirements of is_convex_2
2007-06-28 08:46:53 +00:00
Fernando Cacciola
88111fcf70
VS project files merged back
2007-06-06 15:35:17 +00:00
Andreas Fabri
a98c8e72b1
add demo
2007-05-04 13:49:33 +00:00
Andreas Meyer
c1e9765ff4
manual fix: moved labels inside sectioning command
2007-04-18 14:20:12 +00:00
Sylvain Pion
3a51d2744c
Use \ccc{} around concept names (protects the spell checker).
2007-04-17 16:12:18 +00:00
Sylvain Pion
48d60415a1
Spell check.
2007-04-17 16:07:31 +00:00
Andreas Fabri
ea71b8eaa1
.C ->.cpp and autolinking
2007-04-11 13:59:20 +00:00
Efi Fogel
83f773cf28
cleanup - added parentheses to pacify some come compiler
2007-04-07 09:39:45 +00:00
Andreas Fabri
5639250769
initialization must be in the nested namespace
2007-04-03 10:28:28 +00:00
Fernando Cacciola
9905e5ab77
Fixed singular iterator issue using new safe circulator
2007-04-02 19:10:52 +00:00
Andreas Fabri
e52bf7fec5
fixed template parameter for SunPro
2007-03-30 15:21:02 +00:00