Guillaume Damiand
ebc4300334
Header only for random.cpp.
...
For the header only version, the global variable default_random no more exist => we need to replace all occurences of default_random by a call to the global function get_default_random().
As usual, no modification for the non header only version.
2014-11-14 14:20:26 +01:00
Guillaume Damiand
e8fe29c79c
Ok for the compilation version header only (only for the treated files).
2014-10-31 17:09:48 +01:00
Andreas Fabri
65200381d7
Arithmetic_kernel -> Exact_integer/rational
2014-07-16 18:55:30 +02:00
Andreas Fabri
2aa0f98526
Arithmetic_kernel -> Exact_integer/rational
2014-07-16 16:45:14 +02:00
Sébastien Loriot
0b353bb85b
Merge remote-tracking branch 'origin/CGAL-use_leda-GF'
...
Reintroduce the possibility to use CGAL without GMP
(to use LEDA number types instead for example).
The cmake option to set to switch off GMP when building
the lib is CGAL_DISABLE_GMP.
Tested in CGAL-4.5-Ic-86
Approved by the release manager
ge is necessary,
2014-07-04 12:02:37 +02:00
Sébastien Loriot
5e8080ff83
fix warnings due to the else inside the CGAL_USE
2014-06-27 16:09:22 +02:00
Marc Glisse
afb1012903
Document that gcc-4.2 fails to compile Epick_d.
2014-06-26 18:40:49 +02:00
Sébastien Loriot
e0cac66572
prevent explicit linking
2014-06-24 17:06:55 +02:00
Marc Glisse
f3052c7ec1
Document dependency on Eigen.
2014-06-23 16:46:30 +02:00
Marc Glisse
0d33f5dd9c
Remove the old tentative to document preKernel.
...
Remove the local patched copies of Handle_for and Lazy, they are
necessary for ref-counting and for Lazy_d, but not for Epick_d.
2014-06-20 15:08:36 +02:00
Sébastien Loriot
0230e979e2
Merge branch 'CGAL-use_leda-GF-OLD' into CGAL-use_leda-GF
...
Conflicts:
Arrangement_on_surface_2/test/Arrangement_on_surface_2/construction_test_suite_generator.cpp
Arrangement_on_surface_2/test/Arrangement_on_surface_2/test_construction.cpp
Documentation/doc/Installation.txt
Kernel_23/include/CGAL/Exact_predicates_exact_constructions_kernel.h
2014-06-18 22:50:06 +02:00
Marc Glisse
cb4ca9d8c8
Don't use Dynamic_dimension_tag::value.
2014-05-07 19:28:33 +02:00
Marc Glisse
5c85856e14
Remove trailing whitespace.
2014-05-07 19:01:26 +02:00
Marc Glisse
cf26434f0c
Improve hyperplane support.
2014-04-19 13:04:18 +02:00
Marc Glisse
602d4e059a
Ambient_dimension.
2014-03-19 15:07:19 +01:00
Marc Glisse
3168c851a1
Merge branch 'Kernel_d-rewrite-glisse-old' into Kernel_d-rewrite-glisse
...
Conflicts:
Kernel_d/doc_tex/Kernel_d/kernel_representation_d.tex
Kernel_d/doc_tex/Kernel_d_ref/Homogeneous_d.tex
Kernel_d/doc_tex/Kernel_d_ref/Kernel.tex
Kernel_d/doc_tex/Kernel_d_ref/main.tex
Resolved by dropping those files.
2014-03-12 12:38:08 +01:00
Marc Glisse
b9af149293
Remove \cgalModif markers.
2014-02-02 12:52:44 +01:00
Sébastien Loriot
cc30859ea1
fix typedef
...
doc bugfix
2014-01-30 08:36:36 +01:00
Laurent Rineau
20a339bf1b
Fix warnings -Wunused-local-typedefs
2013-12-12 18:25:20 +01:00
Sébastien Loriot
0fa2cacb60
remove doc_tex documentation (including developer manual) and old manual tools
2013-12-03 17:27:02 +01:00
Marc Glisse
066bbb2da2
Minor doc updates.
2013-11-25 16:27:32 +01:00
Guillaume Damiand
4df9e9fe7d
Add ; in doc and newline after cgalModifEnd macro.
2013-11-25 13:24:58 +01:00
Marc Glisse
050ce22ecb
Remove out-of-date content after KernelWithLifting_d introduction.
2013-11-24 11:31:16 +01:00
Marc Glisse
8ddf8255d5
Merge branch 'Kernel_d-rewrite-glisse-old' into Kernel_d-rewrite-glisse
...
Hopefully the doc will be easier to build this way.
2013-11-23 12:34:18 +01:00
Marc Glisse
e600819820
Split the lifting and projection predicates into a refinement of Kernel_d.
2013-11-23 12:25:33 +01:00
Marc Glisse
569aa80b0a
Say a few more words about Dynamic_dimension_tag, document a few more functions for Point_d.
...
Doc may not compile (didn't check).
2013-11-22 01:27:13 +01:00
Marc Glisse
5d6c4c207b
Explain DimensionTag in the user manual.
2013-11-18 19:35:11 +01:00
Marc Glisse
8aa03c152c
Rename parameter of Epick_d to DimensionTag.
2013-11-18 18:18:01 +01:00
Marc Glisse
9165a9f965
Use consistent notations.
2013-11-18 18:09:33 +01:00
Laurent Rineau
961f3a2263
Merge remote-tracking branch 'origin/Kernel_d-split_precondition-GF'
...
Fix a bug in the test test/Kernel_d/Linear_algebra-test.cpp, lines 205 and
402. In the following expression:
LA::homogeneous_linear_solver(E,SV)==LA::rank(SV))
the order of evaluation of the two operands of operator== is not
determinated by the C++ norm. See
http://en.cppreference.com/w/cpp/language/eval_order
LA::homogeneous_linear_solver modifies its argument SV, and thus has a
side-effect that is not sequenced before the value computation of the
argument of LA::rank. Thus the bug, on certain platforms, when the
compilator allows itself to optimize the order of operations.
Tested in CGAL-4.3-Ic-195 and approved for CGAL-4.3 by the RM
2013-10-10 18:16:29 +02:00
Andreas Fabri
5f390a0cd1
As homogeneous_linear_solver() modifies the matrix which is passed as reference
...
we make sure that rank() is called on the modified matrix.
2013-09-26 16:16:32 +02:00
Sébastien Loriot
d18e42391b
fix Intersect_d functor for intersection API v1
2013-09-25 18:08:54 +02:00
Andreas Fabri
6c547e5663
Mainly added includes
2013-09-13 22:24:30 +02:00
Sébastien Loriot
e8975dbac7
function documentation fixes
...
remove the repetition of the name of the function in its brief description
add parenthesis for function matching "function\s+`[a-z0-9_]`"
2013-09-03 14:25:50 +02:00
Laurent Rineau
bc03aaf30b
Put doc/ in the global dont_submit file
2013-08-20 10:57:03 +02:00
Sébastien Loriot
d282ade623
use \cgalCite instead of \cite
...
using perl -i -pe 's/\\cite\s*{?([a-zA-Z0-9:-]+)}?/\\cgalCite{$1}/g'
2013-08-05 18:25:26 +02:00
Marc Glisse
2a7b549d5e
A few more updates to the user manual for Epick_d.
2013-07-26 18:10:10 +02:00
Sébastien Loriot
2dfe8a3d73
workaround for a doxygen bug: remove space after /!* to avoid a verbatim env
...
this happens if you have an empty line or the text directly after /!*
to find them in the generated documentation, grep for "pre class=\"fragment\""
(a few of them are legitimate however)
2013-07-25 14:58:53 +02:00
Marc Glisse
4d6d5e685b
Reviewers asked that Epick_d take a type argument for the dimension
...
instead of an int.
2013-07-21 15:31:57 +02:00
Marc Glisse
dafdb45786
Move is_iterator changes back to the original file.
2013-07-19 21:55:34 +02:00
Marc Glisse
95c6e3526d
More doc that only applies to Cartesian_d and Homogeneous_d.
2013-07-19 20:16:23 +02:00
Marc Glisse
71c9e2b427
Follow some reviewer comments. Untested (the more I rebuild the doc, the
...
longer it takes...).
2013-07-19 19:50:55 +02:00
Marc Glisse
4c4318ee6b
Minor fixes. doxygen complains a lot (for the whole cgal) and outputs
...
duplicated functions for Point_d, but the information is there.
2013-07-19 19:22:54 +02:00
Marc Glisse
a5b9e12a7c
Copy the doc to doxygen (haven't tried to compile yet).
2013-07-19 18:57:33 +02:00
Marc Glisse
8a92c95755
Merge branch 'Kernel_d-rewrite-glisse-old' into Kernel_d-rewrite-glisse
2013-07-19 11:51:31 +02:00
Sébastien Loriot
d4d9bc212b
replace in the doc \R by \mathbb{R}
...
\R is not a valid latex command
I used: sed -i 's/\\f$\s*\\R/\\f$ \\mathbb{R}/g'
2013-07-10 17:07:43 +02:00
Sébastien Loriot
c09ec2beaa
Merge branch 'Kernel-replace_object-pmoeller'
...
Successfully tested in CGAL-4.3-Ic-59
Approved by the release manager
Conflicts:
Kernel_23/doc/Kernel_23/CGAL/intersections.h
Kernel_23/doc_tex/Kernel_23_ref/intersection.tex
Kernel_d/doc/Kernel_d/Kernel_d.txt
STL_Extension/doc/STL_Extension/CGAL/iterator.h
2013-06-14 14:26:05 +02:00
Sébastien Loriot
716f87d2d7
rename Hidden_type to unspecified_type and update its description
2013-06-13 18:48:58 +02:00
Philipp Möller
fd0a2b46f4
Merge branch 'Documentation-remove-dxyassist-pmoeller'
2013-06-03 20:37:20 +02:00
Sébastien Loriot
fa177d6db5
fix typo
2013-05-31 12:03:56 +02:00