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 |
Andreas Fabri
|
257b180351
|
Triangulation
|
2018-01-18 13:56:10 +00: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 |
Clement Jamin
|
d0b8281ab7
|
Update license in the code (QPL => GPL)
|
2014-06-24 15:47:47 +02:00 |
Marc Glisse
|
5887acc1b4
|
typename only for dependent nested types.
|
2014-03-31 20:56:41 +02:00 |
Clement Jamin
|
ee1183f8b5
|
Doc fixes according to Mariette's review
|
2014-03-31 19:38:56 +02:00 |
Clement Jamin
|
94ae9ec16a
|
Fix warnings
|
2014-03-25 11:48:39 +01:00 |
Olivier Devillers
|
284142f645
|
ambient vs max dim, (code first step)
|
2012-07-06 14:13:18 +00:00 |
Olivier Devillers
|
78a3224468
|
implementing the reviews
|
2012-06-08 12:26:30 +00:00 |
Samuel Hornus
|
f08323e864
|
add comments for future fixes to be done
|
2012-01-09 15:46:16 +00:00 |
Samuel Hornus
|
8280eccd6a
|
mark functions in Triangulation_face.h as required by the Concept. Add precondition that Face be of dim strictly smaller than ambient_dim; fix bug due to this precondition, in Triangulation.h
|
2011-05-11 15:01:38 +00:00 |
Samuel Hornus
|
c623439481
|
renamed all simplex and vertex classes
|
2011-05-10 14:10:39 +00:00 |
Samuel Hornus
|
3829cc5ca6
|
change Pure_complex_face to Triangulation_face
|
2011-05-10 12:54:33 +00:00 |