Sylvain Pion
8e25ac82d3
Fixes after the tuples changes.
2008-07-27 12:01:51 +00:00
Sylvain Pion
a5f006da60
Replace CGAL::Quadruple by boost::tuple.
2008-07-25 14:28:01 +00:00
Sylvain Pion
dc3bf72707
Remove changes.txt files.
2008-07-24 17:47:16 +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
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
53d1ee3d7d
Use <cfloat> more consistently instead of <float.h>.
2008-01-18 20:19:17 +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
Abdelkrim Mebarki
6d6970d681
Fix bug : check the length of the new segment inserted in the streamline
2007-11-15 16:13:32 +00:00
Andreas Meyer
fdeedcf8b0
some low level code cleanup. renamed
...
* CGAL_error to CGAL_error_msg
* introduced a macro CGAL_error()
* added some words about CGAL_error to the developers manual
* renamed most of assert(x) into CGAL_assertion(x)
* renamed exit(x) with x != 0 , CGAL_assertion(false) and assert(false) into CGAL_error
* CORE left untouched, OpenNL changed
2007-11-07 16:51:18 +00:00
Fernando Cacciola
88111fcf70
VS project files merged back
2007-06-06 15:35:17 +00:00
Abdelkrim Mebarki
c28edf2549
remove debug output
2007-06-04 19:21:24 +00:00
Abdelkrim Mebarki
d1cf53abb9
update the completed variable in the purge function in the demo.
2007-06-04 14:36:40 +00:00
Andreas Fabri
01e763217b
3.3 branch -> trunk
2007-06-04 14:27:09 +00:00
Andreas Fabri
deaaaa3e9e
add demo
2007-05-04 14:39:49 +00:00
Andreas Meyer
c1e9765ff4
manual fix: moved labels inside sectioning command
2007-04-18 14:20:12 +00:00
Sylvain Pion
362f0cad54
Skip data files which to not exist (probably have been removed at some point),
...
to avoid testing I don't know what random things which take time.
2007-04-18 11:02:19 +00:00
Sylvain Pion
ac1af9878b
Rename some variables to avoid shadowing warnings with SunCC.
2007-04-18 08:54:16 +00:00
Sylvain Pion
3ecf4c4430
Spell check.
2007-04-17 12:53:02 +00:00
Sylvain Pion
9c1dafa587
Remove more semi-colons inside \ccNestedType (for the manual index).
2007-04-17 09:50:09 +00:00
Andreas Fabri
ea71b8eaa1
.C ->.cpp and autolinking
2007-04-11 13:59:20 +00:00
Andreas Fabri
57d8054f83
moc doesn't like template member functions
2007-04-06 08:25:08 +00:00
Andreas Fabri
889a570e33
Replaced gcvt
2007-04-05 10:04:07 +00:00
Andreas Meyer
41169fc270
* updated howtocite bibkeys for upcoming 3.3 release
...
* typo fixes/cosmetic changes
2007-03-29 17:40:13 +00:00
Abdelkrim Mebarki
a3b98f6b9d
fix old_point variable initialization bug
2007-03-28 09:16:49 +00:00
Andreas Fabri
c6bc9be9d9
removed unused parameters
2007-03-17 09:27:09 +00:00
Joachim Reichel
d08f6bea45
replace obsolete variable CGAL_QT_LDFLAGS by CGAL_LDFLAGS
2007-03-11 09:54:17 +00:00
Sylvain Pion
b2630cd7e1
Apply trailing whites-spaces and leadgin+trailing empty-lines cleanups
...
to demo/**/*.h and .cpp.
2007-03-10 16:55:12 +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
Andreas Fabri
d0b70958a1
cleanup
2007-03-06 16:09:38 +00:00
Andreas Fabri
0a6e126ebf
cleanup
2007-03-06 16:09:12 +00:00
Andreas Fabri
c0e836441e
replace printf with osstream
2007-03-06 16:08:44 +00:00
Michael Hoffmann
75f94d18e4
Remove OPENGL_LIBS.
2007-02-07 16:02:36 +00:00
Sylvain Pion
ecbaf57c00
rename .C to .cpp
2007-01-27 21:10:34 +00:00
Andreas Meyer
b007a1aff2
more illustrations for packages.html
2007-01-26 19:00:48 +00:00
Abdelkrim Mebarki
affd494daf
remove some output statements
2006-09-07 12:40:14 +00:00
Andreas Fabri
5440dc1c11
Fixed min max problem
2006-07-31 23:04:47 +00:00
Andreas Fabri
a0bcd2aa93
changed .C to .cpp in examples
2006-07-09 19:45:15 +00:00
Andreas Meyer
0e3d6b8143
manual bugfix (ccHowToCiteCgal)
2006-05-04 12:28:44 +00:00
Laurent Saboret
e42659d1a4
Fixed svn:executable, svn:keywords and svn:eol-style properties of the whole trunk
2006-05-04 09:15:26 +00:00
Andreas Meyer
dc3ce8747e
\ccHowToCite --> \ccHowToCiteCgal
2006-05-03 11:24:03 +00:00
Andreas Fabri
4530af2ce7
Added ccHowTocite
2006-05-02 20:21:31 +00:00
Andreas Meyer
09d2cb06c5
replaced
...
\ccPkgMaturity{Introduced in \cgal\
by
\ccPkgIntroducedInCGAL{
2006-04-26 16:40:25 +00:00
Andreas Fabri
220873d04a
upgrade to VC7.3 and fixes
2006-04-25 21:18:12 +00:00
Andreas Fabri
2ab3564a2f
upgrade to VC7.3 and fixes
2006-04-25 21:15:56 +00:00
Andreas Fabri
7c9e778bcd
Added \label to PackageDescription
2006-04-21 09:38:55 +00:00
Marc Glisse
b13e3b5ec0
Last round of missing std:: before 3.2 (Andreas permission)
2006-04-19 16:56:12 +00:00
Laurent Saboret
312353dd51
Global fix of svn:executable property in trunk
2006-04-14 15:07:17 +00:00
Andreas Fabri
6a1d331210
removed empty line
2006-04-09 12:50:18 +00:00
Andreas Fabri
d36ffbedc5
unify pkgdescription and manual
2006-04-08 20:17:04 +00:00
Andreas Meyer
5b5a60cecf
rewritten the whole manual
...
ok. seriously:
renamed \chapter into \ccUserChapter and \ccRefChapter
2006-04-06 17:03:37 +00:00
Andreas Fabri
3df1f8659f
Added license information
2006-04-06 15:17:51 +00:00
Andreas Fabri
6144363583
cleanup of \sections
2006-04-05 14:52:44 +00:00
Andreas Fabri
5953877cc4
typos
2006-04-02 13:12:57 +00:00
Abdelkrim Mebarki
eed541d6f7
fixing some display bugs (moving and centering captions)
2006-03-31 13:27:31 +00:00
Andreas Fabri
dde97f3b79
Added package description
2006-03-31 09:37:15 +00:00
Abdelkrim Mebarki
7f668feca0
Fix a bug in the interpolation scheme
2006-03-21 13:48:32 +00:00
Sylvain Pion
eca23609a8
- Rename Point to Point_2 for Darwin_powerpc+Qt.
2006-03-21 11:06:46 +00:00
Sylvain Pion
f1410d4d9d
Some CGAL_USE_QT versus <CGAL/basic.h> ordering issues spotted
...
by the following (quick and very dirty) perl regexp :
perl -0777pi.bak -e 'print m!CGAL_USE_QT(.|[\r\n])*CGAL/basic!g;' */demo/*/*.C
2006-03-19 22:43:06 +00:00
Joachim Reichel
f582718758
rename create_makefile to cgal_create_makefile to avoid name clashes,
...
adjust all occurences of create_makefile and create\_makefile in the entire
repository (well, trunk only)
2006-03-15 22:10:02 +00:00
Abdelkrim Mebarki
85aa5e638f
bug fixed : eliminate duplicate seed points in the streamlines
2006-03-10 14:04:42 +00:00
Andreas Fabri
d239a34085
Capitalized headings
2006-03-09 09:19:47 +00:00
Abdelkrim Mebarki
81f1c566e2
add testsuit for triangular vector field
2006-02-28 16:47:05 +00:00
Abdelkrim Mebarki
fe90baad79
free memory when creating new objects
2006-02-28 16:35:03 +00:00
Abdelkrim Mebarki
df16f94efd
as previous
2006-02-28 16:14:50 +00:00
Abdelkrim Mebarki
ee1741c26b
add more data to test the placement of streamlines on irregular field
2006-02-28 16:12:53 +00:00
Abdelkrim Mebarki
0f9b93db5a
fix the blanc page problem
2006-02-28 16:00:38 +00:00
Abdelkrim Mebarki
729a5a2d6d
update
2006-02-27 23:04:10 +00:00
Abdelkrim Mebarki
9445750bc3
add some function calls in the testsuit
2006-02-27 23:02:32 +00:00
Abdelkrim Mebarki
59613d0dc2
update
2006-02-27 23:00:13 +00:00
Abdelkrim Mebarki
6b6c2b4d34
update
2006-02-27 22:56:49 +00:00
Abdelkrim Mebarki
c3903e476d
update
2006-02-27 21:08:09 +00:00
Abdelkrim Mebarki
467375051a
as previous
2006-02-27 17:05:36 +00:00
Abdelkrim Mebarki
fc7021562e
squared_dist was used in place of dist
2006-02-27 16:57:08 +00:00
Abdelkrim Mebarki
e0bc3c6282
initialize data member
2006-02-27 14:46:50 +00:00
Abdelkrim Mebarki
676b34053b
initialize class parameter before the body of the constructor, without NULL for the iterators
2006-02-27 14:38:19 +00:00
Marc Glisse
3d1ee0cf13
Missing std::
2006-02-26 00:25:19 +00:00
Laurent Saboret
db6a8f948c
Change CVS keywords to SVN style
2006-02-16 14:30:13 +00:00
Abdelkrim Mebarki
e1fbd090bb
first commit
2006-02-15 08:41:52 +00:00
Laurent Saboret
1aad55d4cb
Change CVS keywords to SVN style
2006-02-14 10:08:15 +00:00
Laurent Saboret
b2a1efbbfc
Move packages to trunk root
2006-02-14 08:58:19 +00:00