Commit Graph

210 Commits

Author SHA1 Message Date
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
Sébastien Loriot 3cc96b3c3c use Default for template parameters 2018-10-31 15:08:14 +01:00
Sébastien Loriot c5123bcd29 add input data 2018-10-31 15:08:02 +01:00
Sébastien Loriot 95e30643dd add missing typename 2018-10-31 14:28:11 +01:00
Sébastien Loriot b8be6649ec remove empty lines 2018-10-31 14:17:40 +01:00
Andreas Fabri 2fd7546778 polish 2018-10-31 14:09:06 +01:00
Andreas Fabri 6b8d4a60d9 Polish doc 2018-10-31 13:02:02 +01:00
Andreas Fabri dfe42cb723 No longer use Point_2 2018-10-31 11:59:32 +01:00
Andreas Fabri 470ce56df5 Make it work with Heat_method_traits_3 2018-10-30 22:31:24 +01:00
Andreas Fabri 347fab4d34 V2 2018-10-30 16:15:38 +01:00
Andreas Fabri a6e5e0ef0c Rename header file 2018-10-30 15:12:17 +01:00
Andreas Fabri 0b0611a44a WIP 2018-10-30 15:05:43 +01:00
Andreas Fabri 01eaccc779 Add tparam 2018-10-30 12:09:43 +01:00