Commit Graph

222 Commits

Author SHA1 Message Date
Sébastien Loriot 8bb22d5b2c extra run of the script to remove tabs and trailing whitespaces
right after the merge of the 5.0 release branch

+ manual fix of the files (indentation was changed in the meantime):
   * Spatial_sorting/include/CGAL/Multiscale_sort.h
   * Spatial_sorting/test/Spatial_sorting/test_multiscale.cpp
2020-03-26 14:26:59 +01:00
Sébastien Loriot 8b153fb495 Merge branch 'cgal/releases/CGAL-5.0-branch'
whitespace+tab removal, merged with option -Xignore-space-change
2020-03-26 14:22:32 +01:00
Sébastien Loriot 0779373835 extra run of the script to remove tabs and trailing whitespaces
right after the  merge of 4.14 release branch

+ manual fix on one line in:
    * Arrangement_on_surface_2/include/CGAL/IO/Arr_text_formatter.h
    * .travis/generate_travis.sh
2020-03-26 14:16:06 +01:00
Sébastien Loriot 0a46621dc6 Merge branch 'cgal/releases/CGAL-4.14-branch'
whitespace+tab removal, merged with option -Xignore-all-space
2020-03-26 13:28:46 +01:00
Sébastien Loriot 590612a563 run the script to remove tabs and trailing whitespaces 2020-03-26 13:25:16 +01:00
Simon Giraudot 6c8fd43ebb Use CGAL_target_use_* mechanism for Eigen, LASLIB, OpenCV, TensorFlow, GLPK, SCIP, Boost IOStreams and Serialization 2020-02-10 11:57:56 +01:00
Sébastien Loriot 254d60f642 First pass on removing license notice in header for GPL files 2019-10-19 15:23:19 +02:00
Sébastien Loriot 7356421d80 introduce Commercial license SPDX tag 2019-10-19 12:15:19 +02:00
Sébastien Loriot 9bd9c68b83 update LGPL[23]+ and GPL[23]+ SPDX tags
ack -l --no-svg "SPDX-License-Identifier: GPL-3.0\+" | xargs sed -i "s/SPDX-License-Identifier: GPL-3.0+/SPDX-License-Identifier: GPL-3.0-or-later/"
ack -l --no-svg "SPDX-License-Identifier: LGPL-3.0\+" | xargs sed -i "s/SPDX-License-Identifier: LGPL-3.0+/SPDX-License-Identifier: LGPL-3.0-or-later/"
ack -l --no-svg "SPDX-License-Identifier: GPL-2.0\+" | xargs sed -i "s/SPDX-License-Identifier: GPL-2.0+/SPDX-License-Identifier: GPL-2.0-or-later/"
ack -l --no-svg "SPDX-License-Identifier: LGPL-2.0\+" | xargs sed -i "s/SPDX-License-Identifier: LGPL-2.0+/SPDX-License-Identifier: LGPL-2.0-or-later/"
2019-10-18 21:57:54 +02:00
Mael Rouxel-Labbé f68141a6d3 Merge branch 'PMP-Locate-GF-old' into PMP-Locate-GF 2019-07-01 11:28:25 +02:00
Laurent Rineau 4fbf00fb8a CMake>=3.13: opt for for new policies up to 3.15 2019-06-19 14:34:59 +02:00
Mael Rouxel-Labbé 0b506f5cce Fix package dependencies 2019-05-10 12:41:25 +02: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 59bc453b42 first batch of replacement for level 1 in classified ref man
command used:
grep -l  "##" */doc/*/PackageDescription.txt | xargs  sed -i  -E 's/\#\#\s*([[:print:]]+[[:alnum:]])\s*\#\#\s*$/\\cgalCRPSection{\1}/'
2019-02-14 10:32:39 +01:00
Andreas Fabri 0d87414b4c No need for copy constructor 2019-01-15 19:23:13 +01:00
Andreas Fabri 96ef7fa629 Changes after Michael's review 2019-01-07 11:45:44 +01:00
Andreas Fabri 6979ad1f74 Changes after Michael's review 2019-01-07 08:42:51 +01:00
Andreas Fabri 5841a8b48c Move internal header file 2018-12-23 18:23:07 +01:00
Andreas Fabri 586b185b64 Changes after Guillaume's review 2018-12-21 11:50:27 +01:00
Laurent Rineau 5c34bb1f36 The equation of "the gradient in a given triangle" was missing
and the introduction of the equation "integrated divergence associated
with vertex" as well.
2018-12-18 12:14:36 +01:00
Laurent Rineau 26335f93b1 Replace delta by delta_gamma, to stick more with the article
That also introduces the name of the source set.

I have also removed the sentence "over the entire domain M", that was
off-topic, here.
2018-12-18 12:13:34 +01:00
Laurent Rineau ea3927bb13 Fix the naming of the divergence operator 2018-12-18 12:12:20 +01:00
Andreas Fabri 3dff3df1a2 Remove README 2018-12-11 12:33:11 +01:00
Andreas Fabri 162d74baef Some changes after Sebastien's review 2018-12-11 12:15:16 +01:00
Andreas Fabri 49c0b7899b fix Eigen 3.2 -> 3.3 2018-12-05 08:41:08 +01:00
Andreas Fabri 047938e068 Try to fix warnings (which I cannot reproduce locally) 2018-11-26 10:00:23 +01:00
Andreas Fabri 994b1aa9c6 Fix link to the Solver package 2018-11-26 09:20:31 +01:00
Andreas Fabri 9546044462 Make iDT the default and explain O() complexity 2018-11-20 18:42:23 +01:00
Andreas Fabri d749d3f003 Make iDT the default and explain O() complexity 2018-11-20 18:21:19 +01:00
Andreas Fabri 65e11086a9 Merge branch 'Heat_method_3-GF' of github.com:afabri/cgal into Heat_method_3-GF 2018-11-20 08:38:25 +01:00
Andreas Fabri fd706aa390 Needs Eigen 3.3 or greater 2018-11-20 08:15:36 +01:00
Sébastien Loriot 8f81b45cbf add dependencies 2018-11-16 18:26:51 +01:00
Andreas Fabri 1351746df0 Change project names in CMakeLists 2018-11-15 18:09:39 +01:00
Andreas Fabri 079dce0e54 Remove #includes that are not needed 2018-11-15 08:06:44 +01:00
Sébastien Loriot 73523a9f87 add missing include directive 2018-11-13 12:57:07 +01:00
Andreas Fabri c60b8571e5 Fix test of concept 2018-11-13 09:54:17 +01:00
Andreas Fabri 781191fb2c Make const& 2018-11-13 09:41:39 +01:00
Sébastien Loriot 85e6443992 update requirement 2018-11-12 16:55:06 +01:00
Sébastien Loriot 991e2a453d fix warnings and compilation error + add missing overload 2018-11-12 16:54:16 +01:00
Andreas Fabri 9b4d98b083 rename file 2018-11-12 12:46:30 +01:00
Andreas Fabri 56c6a7946f Add tests 2018-11-12 12:44:44 +01:00
Andreas Fabri f0e6802f74 Changes after Guillaume's review 2018-11-12 09:57:58 +01:00
Andreas Fabri 3f7300283e Changes after Guillaume's review 2018-11-12 09:35:01 +01:00
Andreas Fabri 99d10094c4 Changes after Michael's review 2018-11-09 12:36:49 +01:00
Andreas Fabri b97966f402 clean 2018-11-06 16:43:11 +01:00
Andreas Fabri 79e913a5d7 factor matrices only once 2018-11-06 15:03:08 +01:00
Andreas Fabri 074e31c3d1 rename property map 2018-10-31 15:36:18 +01:00
Andreas Fabri 6d78b5b758 Throw in to_double so that it works with EPEC 2018-10-31 15:30:54 +01:00
Andreas Fabri 74a2020dbf Deal with empty mesh 2018-10-31 15:17:28 +01:00