Commit Graph

15 Commits

Author SHA1 Message Date
Sébastien Loriot 01af331c72 use https for all links to www.cgal.org and doc.cgal.org 2018-03-14 15:59:38 +01:00
Sébastien Loriot ee57fc2d6c add SPDX identifier for files under the GPL-3+ license 2017-11-12 10:17:51 +01:00
Sébastien Loriot 50510c05ea add include directive for license of all GPL header files
done using:
ack-grep "^GPL" */package_info/*/license.txt -l | awk -F "/" '{print $1}' > /tmp/gpl_packages
for i in `cat /tmp/gpl_packages | \
          grep -v Operations_on_polyhedra | \
          grep -v Algebraic_kernel_for_circles | \
          grep -v Algebraic_kernel_for_spheres | \
          grep -v Polyhedron_IO`;
do
  echo $i
  python Scripts/developer_scripts/add_license_in_pkg_header.py $i
done
python Scripts/developer_scripts/add_license_in_pkg_header.py Operations_on_polyhedra Polygon_mesh_processing
python Scripts/developer_scripts/add_license_in_pkg_header.py Algebraic_kernel_for_circles Circular_kernel_2
python Scripts/developer_scripts/add_license_in_pkg_header.py Algebraic_kernel_for_spheres Circular_kernel_3
python Scripts/developer_scripts/add_license_in_pkg_header.py Polyhedron_IO Polyhedron
2017-01-19 15:20:25 +01:00
Marc Glisse 678f9572f7 More ugly workarounds for expression templates. 2016-10-13 23:11:26 +02:00
Laurent Rineau 0288c847ca Fix a warning
include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_support_set_impl.h:49: warning: comparison between signed and unsigned integer expressions
2014-11-04 12:45:35 +01:00
Laurent Rineau 67956a7a65 Fix a warning: 'unsigned int' instead of 'int'
Warning with g++-4.8.3:
.../include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_support_set_impl.h:171:11: warning: assuming signed overflow does not occur when assuming that (X + c) < X is always false [-Wstrict-overflow]
           for (int j=i+1; j<m; ++j)
           ^
That warning is about "signed overflow", and the code actually does not
use the sign of the integer.
2014-11-03 16:52:40 +01:00
Andreas Fabri e7c6a133ca explain that the warning of g++-4.8 is harmless 2014-07-03 16:13:42 +02:00
Andreas Fabri 7edc5a13da We need a #define to use Miniball without CGAL 2013-09-17 09:28:39 +02:00
Laurent Rineau 723b28d39f Fix warnings about incorrect type conversions 2013-03-05 12:44:11 +01:00
Andreas Fabri ce77644138 change the error message as the mail adress of the author isno longer valid 2013-03-01 14:06:08 +01:00
Andreas Fabri a26c1b0e55 0.0 -> 0.0f 2013-03-01 13:45:13 +01:00
Andreas Fabri 28f9063935 had introduced an error. overlaods need the same interface 2013-03-01 12:44:40 +01:00
Andreas Fabri 1287047b9d remove the second parameter and not only its variable 2013-03-01 09:53:38 +01:00
Andreas Fabri 9a862fe795 remove unused parameter name 2013-03-01 09:43:21 +01:00
Philipp Möller 394b8de4d9 Merge the Bounding_volumes package from its parts
Merge Min_circle_2, Min_ellipse_2, Min_sphere_d, Min_annulus_d,
Min_sphere_of_spheres_d, Min_quadrilateral_2 and
Approximate_min_ellipsoid_d. The documentation from the part that is
in Matrix_search has also been moved here, but not the code. Add a new
don't submit that covers the old ones, combine the package_info
files. Examples and tests are still in separate folders. Merge them in
a separate step.
2012-08-16 09:44:11 +00:00