Commit Graph

85276 Commits

Author SHA1 Message Date
Laurent Rineau 1eccb4d616 updated crontab (automated commit) 2019-04-03 11:18:07 +02:00
Maxime Gimeno 22caa66feb Fix CMP0054 warning in hyperbolic triangulation demos 2019-04-03 11:07:13 +02:00
Laurent Rineau 5d56dff72f Late update or menu_version.js 2019-04-03 10:59:01 +02:00
Maxime Gimeno 0e8bd4aa96 Update script for precompiled demo management 2019-04-02 15:18:04 +02:00
Maxime Gimeno 57692b2ddc Rename executable from demos so it is tested in the testsuite. 2019-04-02 15:18:04 +02:00
Andreas Fabri 4465951d0c Add examples to the User Manual that explain exploration 2019-04-02 12:14:06 +02:00
Mael Rouxel-Labbé deb657b341 Fixed exploration_isolated.ipe and added PDF 2019-04-02 11:53:43 +02:00
Andreas Fabri 49c20db0ce Add figure for isolated vertices 2019-04-02 11:43:50 +02:00
Laurent Rineau c54e7c974b Fix AppleClang -Wnull-pointer-arithmetic warning 2019-04-02 10:29:01 +02:00
Laurent Rineau 8539c09179 CGAL requires C++14. 2019-04-01 18:35:58 +02:00
Laurent Rineau 3a32f3f3ef Restore CGAL::cpp11 temporarily
This reverts commit 04978d8aae.
2019-04-01 18:27:35 +02:00
Laurent Rineau 006ef8080c updated crontab (automated commit) 2019-04-01 18:18:06 +02:00
Andreas Fabri 7f88a25d35 Change coordinates in example 2019-04-01 16:36:20 +02:00
Andreas Fabri af33238b8f Add svg files 2019-04-01 16:35:17 +02:00
Mael Rouxel-Labbé d93623dbb2 PDF files 2019-04-01 16:09:04 +02:00
Andreas Fabri 5d95f8c101 Add figures 2019-04-01 15:23:22 +02:00
Mael Rouxel-Labbé 523ac5ff98 Added .ipe figures 2019-04-01 14:39:54 +02:00
Andreas Fabri 063dfa39f0 Add an example for exploration 2019-04-01 14:14:41 +02:00
Laurent Rineau 99fd418c54 updated crontab (automated commit) 2019-03-29 16:14:11 +01:00
Laurent Rineau 91603b6801 Merge branch 'releases/CGAL-4.14-branch' 2019-03-29 16:11:48 +01:00
Laurent Rineau b1e1967282 Announcement mail for CGAL-4.14: a paragraph about CGAL-5.0/C++14 2019-03-29 16:09:57 +01:00
Laurent Rineau e09f692e74 master now targets CGAL 5.0 2019-03-29 16:02:15 +01:00
Laurent Rineau 57a41b3d2a Towards CGAL-4.14.1 2019-03-29 15:59:03 +01:00
Laurent Rineau da78c5a01f Announcement for CGAL-4.14 2019-03-29 15:56:33 +01:00
Laurent Rineau d30499f3db Merge branch 'releases/CGAL-4.13-branch' 2019-03-29 15:49:24 +01:00
Laurent Rineau 84b9328619 Merge branch 'releases/CGAL-4.12-branch' into releases/CGAL-4.13-branch 2019-03-29 15:49:12 +01:00
Laurent Rineau 3140674b09 Merge pull request #3807 from lrineau/Installation-fix_MPFR_static-GF
Fix the order of link when GMP is a static lib
2019-03-29 15:48:57 +01:00
Laurent Rineau 0d7cb7fefd Merge pull request #3814 from MaelRL/Surface_mesh-Actually_reset_all_properties-GF
Surface Mesh: Fix not reseting edge property when a new element re-uses memory
2019-03-29 15:48:54 +01:00
Sébastien Loriot 04978d8aae remove test no longer needed 2019-03-29 13:28:33 +01:00
Sébastien Loriot cf697b8da4 remove section about cpp11 in the user manual 2019-03-29 13:28:33 +01:00
Sébastien Loriot 1c119aec44 replace cpp11::unordered_FOO by std::unordered_FOO 2019-03-29 13:28:33 +01:00
Sébastien Loriot 5a30e88a92 replace cpp11::function by std::function 2019-03-29 13:28:33 +01:00
Sébastien Loriot 124012d9f9 replace cpp11::array by std::array 2019-03-29 13:28:33 +01:00
Sébastien Loriot ffce89c0c0 replace cpp11::is_enum by std::is_enum 2019-03-29 13:28:33 +01:00
Sébastien Loriot f62624c4f9 replace cpp11::tuple by std::tuple 2019-03-29 13:28:33 +01:00
Sébastien Loriot ce126b87c6 remove cpp11::copy_n, cpp11::prev, and cpp11::next and use std instead 2019-03-29 13:28:32 +01:00
Sébastien Loriot 1d908c1c0b remove code for CGAL_INTERSECTION_VERSION 1 2019-03-29 13:28:32 +01:00
Sébastien Loriot 0ce7fc09b5 turns iterator pairs into iterable ranges 2019-03-29 13:28:22 +01:00
Sébastien Loriot 6d9b0e4260 make the ranges iterable 2019-03-29 13:23:46 +01:00
Sébastien Loriot d60f5645aa replace BOOST_FOREACH by c++ ranged-based for loop
some of the command used for the replacement:
ack --cpp  BOOST_FOREACH -l  | xargs sed -i -E "s/BOOST_FOREACH\(([a-zA-Z_:&0-9]+)\s(\w+)\,/for(\1 \2 :/"
ack --cpp  BOOST_FOREACH -l  | xargs sed -i -E "s/BOOST_FOREACH\((const [a-zA-Z_:&0-9]+)\s(\w+)\,/for(\1 \2 :/"
ack --cpp  BOOST_FOREACH -l  | xargs sed -i -E "s/BOOST_FOREACH\((const typename [a-zA-Z_:&0-9]+)\s(\w+)\,/for(\1 \2 :/"
ack --cpp  BOOST_FOREACH -l  | xargs sed -i -E "s/BOOST_FOREACH\((typename [<>a-zA-Z_:&0-9]+)\s(\w+)\,/for(\1 \2 :/"
ack "boost/foreach.hpp" -l --cpp | xargs sed -i '/boost\/foreach.hpp>/d'
2019-03-29 13:22:15 +01:00
Sébastien Loriot 82c13e6e74 remove cpp11 workaround in kernel related packages 2019-03-29 10:41:50 +01:00
Sébastien Loriot ecd818a3a7 remove cpp11 condition 2019-03-29 10:41:50 +01:00
Sébastien Loriot 700342bfa7 remove cpp11 workaround in mesh_3 related packages 2019-03-29 10:41:50 +01:00
Sébastien Loriot 4464229a52 remove cpp11 workarounds in argt related packages 2019-03-29 10:41:50 +01:00
Sébastien Loriot e850eec929 remove cpp11 workaround in PSP related packages 2019-03-29 10:41:50 +01:00
Sébastien Loriot e6cdf9f62b remove condition for cpp11 to be present in face graph related packages 2019-03-29 10:41:50 +01:00
Sébastien Loriot 2ce16d14b5 remove workaround code for cpp11 in triangulation packages 2019-03-29 10:41:50 +01:00
Sébastien Loriot 5bac189dc3 remove cpp11 workaround for CORE 2019-03-29 10:41:50 +01:00
Sébastien Loriot 6e8e4a4b10 remove variadic template workaround for cmap, gmap, and lcell 2019-03-29 10:41:50 +01:00
Sébastien Loriot 8ec090d1d1 remove condition for cpp11 in Nef 2019-03-29 10:41:50 +01:00