Mael
|
8a48be1dd8
|
Remove unused macro
|
2019-12-12 13:10:25 +01:00 |
Laurent Rineau
|
c08c632fc8
|
Merge branch 'releases/CGAL-5.0-branch' into T3_accelerate_insert_in_hole-rebased
|
2019-12-10 13:02:24 +01:00 |
Laurent Rineau
|
435bb4d4c4
|
Cleanup the patch
|
2019-12-10 10:59:13 +01:00 |
Andreas Fabri
|
7c9ef9c9f2
|
Move code into TDS_3 and make it work for parallel mode
|
2019-12-10 10:20:12 +01:00 |
Andreas Fabri
|
27a93fc25a
|
First cleanup
|
2019-12-10 10:19:07 +01:00 |
Andreas Fabri
|
9303a3318a
|
Use small_vector for find_conflicts()
|
2019-12-10 10:19:07 +01:00 |
Laurent Rineau
|
a9abea6dc7
|
Use local small-indices, 2% win.
|
2019-12-10 10:18:57 +01:00 |
Laurent Rineau
|
a93dd81642
|
Cleanup
|
2019-12-10 10:17:08 +01:00 |
Andreas Fabri
|
f2eea9cf78
|
Call clear()
|
2019-12-10 10:17:08 +01:00 |
Andreas Fabri
|
a3fc6790ca
|
Use a boost::small_vector instead of a std::deque in a stack
|
2019-12-10 10:17:08 +01:00 |
Andreas Fabri
|
6462016ce3
|
Use an unordered map to find neighbor cells
|
2019-12-10 10:17:03 +01:00 |
Sébastien Loriot
|
52164b1fba
|
First pass on removing license notice in header for LGPL files
|
2019-10-19 15:40:30 +02: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 |
Laurent Rineau
|
dc02598a5c
|
Merge pull request #4016 from gdamiand/CGAL-more_viewers-gdamiand
CGAL: more viewers
|
2019-07-10 14:22:50 +02:00 |
Laurent Rineau
|
dbb1cb6c9b
|
Merge pull request #3974 from afabri/Triangulation-add_ranges-GF
Triangulation_{2,3): Add ranges
|
2019-07-01 11:16:05 +02:00 |
Guillaume Damiand
|
67307dcead
|
Merge master to remove conflicts; plus rephrase draw documentation following Sebastien comments.
|
2019-06-19 15:48:10 +02:00 |
Andreas Fabri
|
f7b7b9957f
|
Merge remote-tracking branch 'cgal/master' into CGAL-null_ptr-GF
|
2019-06-05 14:47:11 +02:00 |
Andreas Fabri
|
4581f1b7a8
|
Morte replacements
|
2019-06-05 08:39:55 +02:00 |
Andreas Fabri
|
5532b84b4f
|
nullptr_t -> std::nullptr_t
|
2019-06-05 07:28:56 +02:00 |
Andreas Fabri
|
e2d19b0c8d
|
Replace NULL and Nullptr_t with nullptr and nullptr_t
|
2019-06-04 23:45:44 +02:00 |
Andreas Fabri
|
285cdd5be5
|
Add more ranges and a testsuite
|
2019-06-04 10:40:13 +02:00 |
Andreas Fabri
|
4c9bda8169
|
Use C++11 for loop in examples
|
2019-06-03 17:23:32 +02:00 |
Andreas Fabri
|
edd84534a9
|
Fix code
|
2019-06-03 17:02:18 +02:00 |
Andreas Fabri
|
b42fd4428d
|
Triangulation_{2,3): Add ranges
|
2019-06-03 15:36:34 +02:00 |
Andreas Fabri
|
d067fb409a
|
uncomment
|
2019-05-21 17:18:11 +02:00 |
Andreas Fabri
|
f354210be3
|
Add using statements
|
2019-05-21 14:32:03 +02:00 |
Andreas Fabri
|
2d1c78fdd9
|
Unify T3
|
2019-05-20 18:23:08 +02:00 |
Sébastien Loriot
|
124012d9f9
|
replace cpp11::array by std::array
|
2019-03-29 13:28:33 +01:00 |
Sébastien Loriot
|
0ce7fc09b5
|
turns iterator pairs into iterable ranges
|
2019-03-29 13:28:22 +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 |
Laurent Rineau
|
fdd8357915
|
Merge pull request #3580 from afabri/Stream_support-Color-GF
Fix warnings (Add/remove copy constructors, and other warnings)
Co-authored-by: Laurent Rineau <laurent.rineau@cgal.org>
Co-authored-by: Mael <mael.rouxel.labbe@geometryfactory.com>
Co-authored-by: Maxime GIMENO <maxime.gimeno@gmail.com>
|
2019-02-13 15:25:07 +00:00 |
Andreas Fabri
|
88add6bc7b
|
Regular_triangulation_3: Add undocumented Regular_triangulation_cell_base_3::hidden_points()
|
2019-02-07 15:24:00 +01:00 |
Laurent Rineau
|
afc3de2894
|
Merge branch 'master' into Stream_support-Color-GF
|
2019-01-23 09:37:08 +01:00 |
Mael Rouxel-Labbé
|
c4b82ba14b
|
Added swap() and an assignement operator for RT3
|
2019-01-21 14:48:28 +01:00 |
Andreas Fabri
|
380cffffb1
|
Remove copy constructor instead of adding operator= as it triggers a compilation error VC12 Poisson
|
2019-01-15 09:32:21 +01:00 |
Andreas Fabri
|
806ba2ec98
|
Add operartor= for DT3
|
2019-01-10 18:29:52 +01:00 |
Sébastien Loriot
|
61169b394e
|
Merge remote-tracking branch 'cgal/releases/CGAL-4.13-branch'
|
2019-01-04 17:19:19 +01:00 |
Mael Rouxel-Labbé
|
b6f6aeb844
|
Merge remote-tracking branch 'mine/T3-Fix_weighted_ranges_insertion_removal-GF' into T3-Fix_weighted_ranges_insertion_removal-GF
|
2018-12-18 13:20:58 +01:00 |
Mael Rouxel-Labbé
|
82e458da80
|
Replaced TDS template specialization with tag-based detection
|
2018-11-14 07:58:08 +01:00 |
Mael Rouxel-Labbé
|
bb19c965f9
|
Moved helper struct outside of TBB macros to fix sequential compilation
|
2018-11-14 07:58:08 +01:00 |
Laurent Rineau
|
574f21cca6
|
Merge pull request #3383 from lrineau/Triangulation_3-fix_examples_with_TBB-GF
Re-add examples incorrectly disabled by PR #2835
|
2018-10-29 10:27:48 +01:00 |
Guillaume Damiand
|
520015f92a
|
Align typedef
|
2018-10-15 14:21:20 +02:00 |
Mael Rouxel-Labbé
|
aa1e0acbee
|
Replaced macro with a legal vertex handle validity checker
|
2018-10-10 13:08:14 +02:00 |
Laurent Rineau
|
4a70d8773e
|
Re-add examples incorrectly disabled by PR #2835
... and then fix them.
|
2018-10-08 12:32:12 +02:00 |
Mael Rouxel-Labbé
|
8500add791
|
There is no 'try'!
|
2018-10-03 16:31:42 +02:00 |
Mael Rouxel-Labbé
|
e1122cef5c
|
Fixed deadlocks in parallel removal of a range of weighted points
|
2018-10-03 15:58:59 +02:00 |
Mael Rouxel-Labbé
|
e2b0683030
|
Fixed not checking 'hint' validity in the parallel insertion of a range of WPs
|
2018-10-03 15:57:40 +02:00 |
Guillaume Damiand
|
ddd7f8fa3b
|
Add an option to disable viewer when running ctest.
|
2018-09-07 13:29:38 +02:00 |