forked from CGAL/cgal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
1207 lines (1192 loc) · 56.9 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*build*
/*/*/*/build
/*/*/*/VC*
/*/*/*/GCC
.vscode
AABB_tree/demo/AABB_tree/AABB_demo
AABB_tree/demo/AABB_tree/Makefile
AABB_tree/examples/AABB_tree/*.kdev*
AABB_tree/examples/AABB_tree/*_example
AABB_tree/examples/AABB_tree/Makefile
AABB_tree/examples/AABB_tree/cgal_test_with_cmake
AABB_tree/test/AABB_tree/*.kdev*
AABB_tree/test/AABB_tree/Makefile
AABB_tree/test/AABB_tree/aabb_correctness_triangle_test
AABB_tree/test/AABB_tree/aabb_distance_edge_test
AABB_tree/test/AABB_tree/aabb_distance_triangle_hint_test
AABB_tree/test/AABB_tree/aabb_distance_triangle_test
AABB_tree/test/AABB_tree/aabb_intersection_triangle_test
AABB_tree/test/AABB_tree/aabb_naive_vs_tree_distance_segment_test
AABB_tree/test/AABB_tree/aabb_projection_triangle_test
AABB_tree/test/AABB_tree/cgal_test_with_cmake
Algebraic_foundations/test/Algebraic_foundations/Algebraic_extension_traits
Algebraic_foundations/test/Algebraic_foundations/Algebraic_structure_traits
Algebraic_foundations/test/Algebraic_foundations/Chinese_remainder_traits
Algebraic_foundations/test/Algebraic_foundations/Coercion_traits
Algebraic_foundations/test/Algebraic_foundations/Real_embeddable_traits
Algebraic_foundations/test/Algebraic_foundations/Scalar_factor_traits
Algebraic_foundations/test/Algebraic_foundations/cgal_test_with_cmake
Algebraic_foundations/test/Algebraic_foundations/extended_euclidean_algorithm
Algebraic_foundations/test/Algebraic_foundations/ipower
Algebraic_kernel_d/test/Algebraic_kernel_d/cgal_test_with_cmake
Algebraic_kernel_d/test/Algebraic_kernel_d/rs_isolator
Alpha_shapes_2/demo/Alpha_shapes_2/Makefile
Alpha_shapes_2/demo/Alpha_shapes_2/alpha_shapes_2
Alpha_shapes_2/examples/Alpha_shapes_2/Makefile
Alpha_shapes_2/examples/Alpha_shapes_2/alpha_shapes_2
Alpha_shapes_3/demo/Alpha_shapes_3/Makefile
Alpha_shapes_3/demo/Alpha_shapes_3/alpha_shapes_3
Alpha_shapes_3/demo/Alpha_shapes_3/weighted_alpha_shapes_3
Alpha_shapes_3/test/Alpha_shapes_3/cgal_test_with_cmake
Alpha_shapes_3/test/Alpha_shapes_3/test_alpha_shape_3
Alpha_shapes_3/test/Alpha_shapes_3/test_fixed_alpha_shape_3
Alpha_shapes_3/test/Alpha_shapes_3/test_weighted_alpha_shape_3
Apollonius_graph_2/demo/Apollonius_graph_2/Makefile
Apollonius_graph_2/demo/Apollonius_graph_2/apollonius_graph_2
Arithmetic_kernel/test/Arithmetic_kernel/Arithmetic_kernel
Arithmetic_kernel/test/Arithmetic_kernel/CORE_arithmetic_kernel
Arithmetic_kernel/test/Arithmetic_kernel/GMP_arithmetic_kernel
Arithmetic_kernel/test/Arithmetic_kernel/Get_arithmetic_kernel
Arithmetic_kernel/test/Arithmetic_kernel/LEDA_arithmetic_kernel
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/Bezier_curves
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/aggregated_insertion
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/algebraic_curves
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/algebraic_segments
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_ex_dcel_io.dat
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_ex_io.dat
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_ex_io_hist.dat
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_ex_io_unbounded.dat
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/batched_point_location
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/bgl_dual_adapter
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/bgl_primal_adapter
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/bounded_planar_vertical_decomposition
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/cgal_test_with_cmake
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/circles
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/circular_arcs
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/circular_line_arcs
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/conic_multiplicities
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/conics
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/consolidated_curve_data
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/curve_history
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/dcel_extension
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/dcel_extension_io
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/dual_lines
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/dual_with_data
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/edge_insertion
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/edge_manipulation
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/edge_manipulation_curve_history
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/face_extension
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/face_extension_overlay
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/generic_curve_data
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/global_insertion
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/global_removal
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/incremental_insertion
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/io
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/io_curve_history
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/io_unbounded
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/isolated_vertices
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/observer
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/overlay
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/overlay_unbounded
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/point_location_example
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polylines
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/predefined_kernel
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/predefined_kernel_non_intersecting
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/rational_functions
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/rational_functions_rational_coefficients
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/special_edge_insertion
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/spherical_insert
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/tracing_counting
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/unb_planar_vertical_decomposition
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/unbounded_non_intersecting
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/unbounded_rational_functions
Arrangement_on_surface_2/examples/Arrangement_on_surface_2/vertical_ray_shooting
Arrangement_on_surface_2/test/Arrangement_on_surface_2/test_point_location.cpp
BGL/examples/BGL_arrangement_2/Makefile
BGL/examples/BGL_arrangement_2/cgal_test_with_cmake
BGL/examples/BGL_arrangement_2/dual
BGL/examples/BGL_arrangement_2/primal
BGL/test/BGL/cgal_test_with_cmake
Boolean_set_operations_2/demo/Boolean_set_operations_2/Makefile
Boolean_set_operations_2/demo/Boolean_set_operations_2/boolean_operations_2
Box_intersection_d/test/Box_intersection_d/automated_test
Box_intersection_d/test/Box_intersection_d/benchmark.data
Box_intersection_d/test/Box_intersection_d/benchmark_box_intersection
Box_intersection_d/test/Box_intersection_d/box_grid
Box_intersection_d/test/Box_intersection_d/cgal_test_with_cmake
Box_intersection_d/test/Box_intersection_d/random_set_test
CGAL_ImageIO/demo/CGALimageIO/Makefile
CGAL_ImageIO/demo/CGALimageIO/cgal_test_with_cmake
CGAL_ImageIO/demo/CGALimageIO/image_to_vtk_viewer
CGAL_ImageIO/examples/CGALimageIO/Makefile
CGAL_ImageIO/examples/CGALimageIO/cgal_test_with_cmake
CGAL_ImageIO/examples/CGALimageIO/convert_raw_image_to_inr
CGAL_ImageIO/examples/CGALimageIO/makefile
CGAL_ImageIO/examples/CGALimageIO/test_imageio
CGAL_ImageIO/src/CGAL_ImageIO/Makefile
Circular_kernel_3/demo/Circular_kernel_3/Circular_kernel_3_demo
Circular_kernel_3/demo/Circular_kernel_3/Makefile
Circular_kernel_3/test/Circular_kernel_3/cgal_test_with_cmake
Circular_kernel_3/test/Circular_kernel_3/test_Exact_spherical_kernel
Circular_kernel_3/test/Circular_kernel_3/test_Lazy_Spherical_kernel
Circular_kernel_3/test/Circular_kernel_3/test_Lazy_spherical_kernel_basics
Circular_kernel_3/test/Circular_kernel_3/test_Spherical_kernel
Circular_kernel_3/test/Circular_kernel_3/test_Spherical_kernel_basics
Circular_kernel_3/test/Circular_kernel_3/test_Spherical_kernel_with_core
Documentation/log/*.*
Documentation/output
Documentation/tags/*.*
Generator/examples/Generator/ball_d
Generator/examples/Generator/cgal_test_with_cmake
Generator/examples/Generator/cube_d
Generator/examples/Generator/grid_d
Generator/examples/Generator/random_convex_set
Generator/examples/Generator/random_degenerate_point_set
Generator/examples/Generator/random_grid
Generator/examples/Generator/random_polygon
Generator/examples/Generator/random_polygon2
Generator/examples/Generator/random_segments1
Generator/examples/Generator/random_segments2
Generator/examples/Generator/sphere_d
Generator/test/Generator/bug
Generator/test/Generator/cgal_test_with_cmake
Generator/test/Generator/random_poly_test
Generator/test/Generator/rcs_test
Generator/test/Generator/test_combination_enumerator
Generator/test/Generator/test_generators
GraphicsView/TAGS
GraphicsView/demo/Circular_kernel_2/Circular_kernel_2
GraphicsView/demo/Circular_kernel_2/Makefile
GraphicsView/demo/Circular_kernel_2/qrc_*.cxx
GraphicsView/demo/Circular_kernel_2/ui_*.h
GraphicsView/demo/GraphicsView/*_moc.cpp
GraphicsView/demo/GraphicsView/Delaunay_triangulation
GraphicsView/demo/GraphicsView/Makefile
GraphicsView/demo/GraphicsView/constrained_Delaunay_triangulation
GraphicsView/demo/GraphicsView/min
GraphicsView/demo/GraphicsView/qrc_*.cxx
GraphicsView/demo/GraphicsView/ui_*.h
GraphicsView/demo/Polygon/*.cpp_parameters
GraphicsView/demo/Polygon/*.dir
GraphicsView/demo/Polygon/Makefile
GraphicsView/demo/Polygon/Polygon_2
GraphicsView/demo/Polygon/qrc_Polygon_2.cxx
GraphicsView/demo/Polygon/ui_Polygon_2.h
GraphicsView/demo/Triangulation_2/Constrained_Delaunay_triangulation_2
GraphicsView/demo/Triangulation_2/Delaunay_triangulation_2
GraphicsView/demo/Triangulation_2/Makefile
GraphicsView/demo/Triangulation_2/Regular_triangulation_2
GraphicsView/demo/Triangulation_2/qrc_*.cxx
GraphicsView/demo/Triangulation_2/ui_*.h
HalfedgeDS/test/HalfedgeDS/cgal_test_with_cmake
HalfedgeDS/test/HalfedgeDS/test_hds
HalfedgeDS/test/HalfedgeDS/test_hds_decorator
Inscribed_areas/test/Inscribed_areas/Makefile
Inscribed_areas/test/Inscribed_areas/data/out
Installation/auxiliary/gdb/python/CGAL/__init__.pyc
Installation/auxiliary/gdb/python/CGAL/printers.pyc
Installation/auxiliary/gdb/test
Installation/cmake/modules/*.tmp
Installation/test/Installation/cgal_test
/Installation/test/Installation/cgal_test_with_cmake
Installation/test/Installation/deprecation_warning
Interpolation/demo/Interpolation/cgal_test_with_cmake
Intersections_3/test/Intersections_3/bbox_other_do_intersect_test
Intersections_3/test/Intersections_3/cgal_test_with_cmake
Intersections_3/test/Intersections_3/circle_other
Intersections_3/test/Intersections_3/line_line
Intersections_3/test/Intersections_3/segment_segment
Intersections_3/test/Intersections_3/test_intersections_3
Intersections_3/test/Intersections_3/triangle_3_triangle_3_intersection
Intersections_3/test/Intersections_3/triangle_other
Intersections_3/test/Intersections_3/triangle_other_intersection_test
Jet_fitting_3/examples/Jet_fitting_3/Makefile
Jet_fitting_3/examples/Jet_fitting_3/Mesh_estimation
Jet_fitting_3/examples/Jet_fitting_3/Single_estimation
Jet_fitting_3/examples/Jet_fitting_3/VC
Jet_fitting_3/test/Jet_fitting_3/Makefile
Jet_fitting_3/test/Jet_fitting_3/blind_1pt
/Jet_fitting_3/examples/Jet_fitting_3/cgal_test_with_cmake
/Jet_fitting_3/examples/Jet_fitting_3/data_ellipe0.003.off.4ogl.txt
Kernel_23/test/Kernel_23/Cartesian
Kernel_23/test/Kernel_23/Dimension
Kernel_23/test/Kernel_23/Filtered_cartesian
Kernel_23/test/Kernel_23/Filtered_homogeneous
Kernel_23/test/Kernel_23/Homogeneous
Kernel_23/test/Kernel_23/Kernel_checker
Kernel_23/test/Kernel_23/Lazy_kernel
Kernel_23/test/Kernel_23/Makefile
Kernel_23/test/Kernel_23/Simple_cartesian
Kernel_23/test/Kernel_23/Simple_homogeneous
Kernel_23/test/Kernel_23/Test_IO.out
/Kernel_23/test/Kernel_23/Test-*IO.out
Kernel_23/test/Kernel_23/cgal_test_with_cmake
Kernel_23/test/Kernel_23/test_kernel__
Kinetic_data_structures/demo/Kinetic_data_structures/Delaunay_triangulation_2
Kinetic_data_structures/demo/Kinetic_data_structures/Delaunay_triangulation_stable_subset_2
Kinetic_data_structures/demo/Kinetic_data_structures/KDS_Delaunay_triangulation_2
Kinetic_data_structures/demo/Kinetic_data_structures/KDS_Delaunay_triangulation_stable_subset_2
Kinetic_data_structures/demo/Kinetic_data_structures/KDS_generate_data
Kinetic_data_structures/demo/Kinetic_data_structures/KDS_gui_2
Kinetic_data_structures/demo/Kinetic_data_structures/Makefile
Kinetic_data_structures/demo/Kinetic_data_structures/cgal_test_with_cmake
Kinetic_data_structures/demo/Kinetic_data_structures/generate_data
Kinetic_data_structures/demo/Kinetic_data_structures/gui_2
Kinetic_data_structures/test/Kinetic_data_structures/Delaunay_triangulation_2
Kinetic_data_structures/test/Kinetic_data_structures/Delaunay_triangulation_3
Kinetic_data_structures/test/Kinetic_data_structures/active_objects_tables
Kinetic_data_structures/test/Kinetic_data_structures/cgal_test_with_cmake
Kinetic_data_structures/test/Kinetic_data_structures/exact_kds
Kinetic_data_structures/test/Kinetic_data_structures/instantaneous_kernel
Kinetic_data_structures/test/Kinetic_data_structures/numbers
Kinetic_data_structures/test/Kinetic_data_structures/numeric_kds
Kinetic_data_structures/test/Kinetic_data_structures/random_kds
Kinetic_data_structures/test/Kinetic_data_structures/regular_triangulation_3
Kinetic_data_structures/test/Kinetic_data_structures/simulator
Kinetic_data_structures/test/Kinetic_data_structures/solvers
Kinetic_data_structures/test/Kinetic_data_structures/test_KDS_Delaunay_triangulation_2
Kinetic_data_structures/test/Kinetic_data_structures/timings
Linear_cell_complex/demo/Linear_cell_complex/Linear_cell_complex_3.qrc.depends
Linear_cell_complex/demo/Linear_cell_complex/Linear_cell_complex_3_demo
Linear_cell_complex/demo/Linear_cell_complex/cgal_test_with_cmake
Linear_cell_complex/examples/Linear_cell_complex/cgal_test_with_cmake
Linear_cell_complex/examples/Linear_cell_complex/linear_cell_complex_3
Linear_cell_complex/examples/Linear_cell_complex/linear_cell_complex_3_triangulation
Linear_cell_complex/examples/Linear_cell_complex/linear_cell_complex_3_with_colored_vertices
Linear_cell_complex/examples/Linear_cell_complex/linear_cell_complex_4
Linear_cell_complex/examples/Linear_cell_complex/plane_graph_to_lcc_2
Linear_cell_complex/examples/Linear_cell_complex/voronoi_2
Linear_cell_complex/examples/Linear_cell_complex/voronoi_3
Maintenance/infrastructure/*/reference*platforms/*/*.bak
Maintenance/infrastructure/*/reference*platforms/*/bin
Maintenance/infrastructure/*/reference*platforms/*/CGAL*Config.cmake
Maintenance/infrastructure/*/reference*platforms/*/CGALExports.cmake
Maintenance/infrastructure/*/reference*platforms/*/cmake
Maintenance/infrastructure/*/reference*platforms/*/CMakeCache.txt.backup
Maintenance/infrastructure/*/reference*platforms/*/cmake_install.cmake
Maintenance/infrastructure/*/reference*platforms/*/config
Maintenance/infrastructure/*/reference*platforms/*/include
Maintenance/infrastructure/*/reference*platforms/*/Installation
Maintenance/infrastructure/*/reference*platforms/*/lib
Maintenance/infrastructure/*/reference*platforms/*/localbuildscript
Maintenance/infrastructure/*/reference*platforms/*/localtestscript
Maintenance/infrastructure/*/reference*platforms/*/localtestscript-redo-results-collection
Maintenance/infrastructure/*/reference*platforms/*/Makefile
Maintenance/infrastructure/*/reference*platforms/*/src
Maintenance/infrastructure/*/reference*platforms/*/VERSION
Manual_tools/scripts/generate_reference_manual/Archives
Manual_tools/src/cc_anchor_filter
Manual_tools/src/cc_anchor_filter.cpp
Manual_tools/src/cc_anchor_filter.lex.tmp
Manual_tools/src/cc_extract_html
Manual_tools/src/cc_extract_images
Manual_tools/src/cc_extract_images_lexer.cpp
Manual_tools/src/cc_index_link
Manual_tools/src/cc_remove_unwanted_links
Manual_tools/src/cc_remove_unwanted_links.cpp
Manual_tools/src/lexer.cpp
Manual_tools/src/syntax.cpp
Manual_tools/src/syntax.output
Manual_tools/src/syntax.tab.h
Mesh_2/.*.deps
Mesh_2/benchmark/.*.deps
Mesh_2/benchmark/bench
Mesh_2/benchmark/my_makefile
Mesh_2/benchmark/semantic.cache
Mesh_2/demo/Mesh_2/*.core
Mesh_2/demo/Mesh_2/*.moc
Mesh_2/demo/Mesh_2/.*.deps
Mesh_2/demo/Mesh_2/Makefile
Mesh_2/demo/Mesh_2/cgal_test_with_cmake
Mesh_2/demo/Mesh_2/conform
Mesh_2/demo/Mesh_2/depends
Mesh_2/demo/Mesh_2/filename.edg
Mesh_2/demo/Mesh_2/last_input.edg
Mesh_2/demo/Mesh_2/mesh
Mesh_2/demo/Mesh_2/mesh_2_demo
Mesh_2/demo/Mesh_2/my_makefile
Mesh_2/demo/Mesh_2/semantic.cache
Mesh_2/doxygen
Mesh_2/examples/Mesh_2/*.core
Mesh_2/examples/Mesh_2/.*.deps
Mesh_2/examples/Mesh_2/cgal_test_with_cmake
Mesh_2/examples/Mesh_2/conform
Mesh_2/examples/Mesh_2/conforming
Mesh_2/examples/Mesh_2/depends
Mesh_2/examples/Mesh_2/mesh
Mesh_2/examples/Mesh_2/mesh_class
Mesh_2/examples/Mesh_2/mesh_global
Mesh_2/examples/Mesh_2/mesh_with_seeds
Mesh_2/examples/Mesh_2/my_makefile
Mesh_2/examples/Mesh_2/semantic.cache
Mesh_2/include/CGAL/semantic.cache
Mesh_2/test/Mesh_2/*.core
Mesh_2/test/Mesh_2/.*.deps
Mesh_2/test/Mesh_2/Makefile
Mesh_2/test/Mesh_2/bench_double_map
Mesh_2/test/Mesh_2/cgal_test_with_cmake
Mesh_2/test/Mesh_2/conform_plus
Mesh_2/test/Mesh_2/depends
Mesh_2/test/Mesh_2/my_makefile
Mesh_2/test/Mesh_2/semantic.cache
Mesh_2/test/Mesh_2/test_conforming
Mesh_2/test/Mesh_2/test_double_map
Mesh_2/test/Mesh_2/test_filtred_container
Mesh_2/test/Mesh_2/test_meshing
Mesh_2/test/Mesh_2/test_meshing_user_bug_test_case
Mesh_2/test/Mesh_2/test_vertex_and_face_bases
Mesh_3/*.tags.xml
Mesh_3/.*.deps
Mesh_3/applications/*.cgal
Mesh_3/applications/*.maillage
Mesh_3/applications/*.mesh
Mesh_3/applications/*.png
Mesh_3/applications/*.surface*
Mesh_3/applications/.*.deps
Mesh_3/applications/GOCAD_xyz_to_OFF
Mesh_3/applications/cgal_to_medit
Mesh_3/applications/depends
Mesh_3/applications/display_distribution
Mesh_3/applications/identify_identical_points_in_OFF_files
Mesh_3/applications/lanteri
Mesh_3/applications/lanteri_output_tet_mesh
Mesh_3/applications/medit_to_cgal
Mesh_3/applications/my_makefile
Mesh_3/applications/nb2mesh
Mesh_3/applications/off_to_ghs
Mesh_3/applications/off_to_medit
Mesh_3/applications/read_mesh
Mesh_3/applications/slivers_exuder
Mesh_3/applications/stat_mesh
Mesh_3/applications/test_off
Mesh_3/demo/Mesh_3/Makefile
Mesh_3/demo/Mesh_3/Mesh_3
Mesh_3/demo/Mesh_3/build*
Mesh_3/demo/Mesh_3/out.mesh
Mesh_3/doxygen
Mesh_3/examples/Mesh_3/*.cgal
Mesh_3/examples/Mesh_3/*.mesh
Mesh_3/examples/Mesh_3/*.mesh.*
Mesh_3/examples/Mesh_3/*.off
Mesh_3/examples/Mesh_3/*.png
Mesh_3/examples/Mesh_3/.*.deps
Mesh_3/examples/Mesh_3/random-image.inr
Mesh_3/examples/Mesh_3/Makefile
Mesh_3/examples/Mesh_3/applications
Mesh_3/examples/Mesh_3/cgal_test_with_cmake
Mesh_3/examples/Mesh_3/cgal_to_medit
Mesh_3/examples/Mesh_3/chair-after.mesh
Mesh_3/examples/Mesh_3/chair-after.png
Mesh_3/examples/Mesh_3/chair-before.png
Mesh_3/examples/Mesh_3/chair-slivers.off
Mesh_3/examples/Mesh_3/chair-surface-initiale.off
Mesh_3/examples/Mesh_3/chair.mesh
Mesh_3/examples/Mesh_3/depends
Mesh_3/examples/Mesh_3/display_distribution
Mesh_3/examples/Mesh_3/dump_of_initial_points
Mesh_3/examples/Mesh_3/filter_remove_tets_from_medit
Mesh_3/examples/Mesh_3/implicit_surfaces_mesher_3
Mesh_3/examples/Mesh_3/lanteri
Mesh_3/examples/Mesh_3/lanteri_output_tet_mesh
Mesh_3/examples/Mesh_3/medit_to_cgal
Mesh_3/examples/Mesh_3/mesh_3D_gray_image
Mesh_3/examples/Mesh_3/mesh_3D_image
Mesh_3/examples/Mesh_3/mesh_3D_image_variable_size
Mesh_3/examples/Mesh_3/mesh_implicit_sphere
Mesh_3/examples/Mesh_3/mesh_implicit_sphere_variable_size
Mesh_3/examples/Mesh_3/mesh_optimization_example
Mesh_3/examples/Mesh_3/mesh_optimization_lloyd_example
Mesh_3/examples/Mesh_3/mesh_polyhedral_domain
Mesh_3/examples/Mesh_3/mesh_polyhedral_domain_with_features
Mesh_3/examples/Mesh_3/mesh_two_implicit_spheres_with_balls
Mesh_3/examples/Mesh_3/my_makefile
Mesh_3/examples/Mesh_3/off_to_ghs
Mesh_3/examples/Mesh_3/out*.mesh.*
Mesh_3/examples/Mesh_3/polyhedral_surface_mesher
Mesh_3/examples/Mesh_3/polyhedral_surface_mesher-*
Mesh_3/examples/Mesh_3/read_mesh
Mesh_3/examples/Mesh_3/slivers_exuder
Mesh_3/examples/Mesh_3/stat_mesh
Mesh_3/examples/Mesh_3/test_off
/Mesh_3/test/Mesh_3/a.lua
/Mesh_3/test/Mesh_3/applications
/Mesh_3/test/Mesh_3/*.cgal
/Mesh_3/test/Mesh_3/cgal_test_with_cmake
/Mesh_3/test/Mesh_3/cgal_to_medit
/Mesh_3/test/Mesh_3/combined_spheres
/Mesh_3/test/Mesh_3/combined_spheres-with-sphere-oracle
/Mesh_3/test/Mesh_3/CTestTestfile.cmake
/Mesh_3/test/Mesh_3/depends
/Mesh_3/test/Mesh_3/.*.deps
/Mesh_3/test/Mesh_3/display_distribution
/Mesh_3/test/Mesh_3/filter_remove_tets_from_medit
/Mesh_3/test/Mesh_3/lanteri
/Mesh_3/test/Mesh_3/lanteri_output_tet_mesh
/Mesh_3/test/Mesh_3/*.maillage
/Mesh_3/test/Mesh_3/Makefile
/Mesh_3/test/Mesh_3/medit_to_cgal
/Mesh_3/test/Mesh_3/*.mesh
/Mesh_3/test/Mesh_3/multi_spheres
/Mesh_3/test/Mesh_3/my_makefile
/Mesh_3/test/Mesh_3/*.off
/Mesh_3/test/Mesh_3/off_to_ghs
/Mesh_3/test/Mesh_3/*.out*
/Mesh_3/test/Mesh_3/*.png
/Mesh_3/test/Mesh_3/read_mesh
/Mesh_3/test/Mesh_3/slivers_exuder
/Mesh_3/test/Mesh_3/stat_mesh
/Mesh_3/test/Mesh_3/*.surface*
/Mesh_3/test/Mesh_3/test_backward_compatibility
/Mesh_3/test/Mesh_3/test_backward_compatibility_MeshFoobarCriteria_3
/Mesh_3/test/Mesh_3/test_boost_has_xxx
/Mesh_3/test/Mesh_3/test_c3t3
/Mesh_3/test/Mesh_3/test_c3t3_extract_subdomains_boundaries
/Mesh_3/test/Mesh_3/test_c3t3_io
/Mesh_3/test/Mesh_3/test_c3t3_with_features
/Mesh_3/test/Mesh_3/test_criteria
/Mesh_3/test/Mesh_3/test_domain_with_polyline_features
/Mesh_3/test/Mesh_3/test_implicit_multi_domain_to_labeling_function_wrapper
/Mesh_3/test/Mesh_3/test_io_methods
/Mesh_3/test/Mesh_3/test_labeled_mesh_domain_3
/Mesh_3/test/Mesh_3/test_mesh_3_implicit_vector_to_labeled_function_wrapper
/Mesh_3/test/Mesh_3/test_mesh_3_labeled_mesh_domain_3
/Mesh_3/test/Mesh_3/test_mesh_criteria_creation
/Mesh_3/test/Mesh_3/test_mesh_implicit_domains
/Mesh_3/test/Mesh_3/test_meshing_3D_gray_image
/Mesh_3/test/Mesh_3/test_meshing_3D_image
/Mesh_3/test/Mesh_3/test_meshing_determinism
/Mesh_3/test/Mesh_3/test_meshing_implicit_function
/Mesh_3/test/Mesh_3/test_meshing_polyhedron
/Mesh_3/test/Mesh_3/test_meshing_polyhedron_with_features
/Mesh_3/test/Mesh_3/test_meshing_polylines_only
/Mesh_3/test/Mesh_3/test_meshing_unit_tetrahedron
/Mesh_3/test/Mesh_3/test_off
/Mesh_3/test/Mesh_3/test_robust_weighted_circumcenter
/Mesh_3/test/Mesh_3/test-tetgen.elem
/Mesh_3/test/Mesh_3/test-tetgen.face
/Mesh_3/test/Mesh_3/test-tetgen.node
Min_annulus_d/*.aux
Min_annulus_d/*.bbl
Min_annulus_d/*.blg
Min_annulus_d/*.dvi
Min_annulus_d/*.idx
Min_annulus_d/*.ilg
Min_annulus_d/*.ind
Min_annulus_d/*.log
Min_annulus_d/*.mxp
Min_annulus_d/*.toc
Min_annulus_d/.dep
Min_annulus_d/.obj
Min_annulus_d/.tmp
Min_annulus_d/Makefile
Min_annulus_d/bin
Min_annulus_d/doc_ps
Min_circle_2/*.aux
Min_circle_2/*.bbl
Min_circle_2/*.blg
Min_circle_2/*.dvi
Min_circle_2/*.idx
Min_circle_2/*.ilg
Min_circle_2/*.ind
Min_circle_2/*.log
Min_circle_2/*.mxp
Min_circle_2/*.toc
Min_circle_2/.dep
Min_circle_2/.obj
Min_circle_2/.tmp
Min_circle_2/Makefile
Min_circle_2/bin
Min_circle_2/doc_ps
Min_ellipse_2/*.aux
Min_ellipse_2/*.bbl
Min_ellipse_2/*.blg
Min_ellipse_2/*.dvi
Min_ellipse_2/*.idx
Min_ellipse_2/*.ilg
Min_ellipse_2/*.ind
Min_ellipse_2/*.log
Min_ellipse_2/*.mxp
Min_ellipse_2/*.toc
Min_ellipse_2/.dep
Min_ellipse_2/.obj
Min_ellipse_2/.tmp
Min_ellipse_2/Makefile
Min_ellipse_2/bin
Min_ellipse_2/doc_ps
Minkowski_sum_3/test/Minkowski_sum_3/cgal_test_with_cmake
Nef_2/test/Nef_2/EPoint-test
Nef_2/test/Nef_2/Nef_polyhedron_2-test
Nef_2/test/Nef_2/Polynomial-test
Nef_2/test/Nef_2/cgal_test_with_cmake
Nef_2/test/Nef_2/nef_2_point_location
Nef_3/demo/Nef_3/Makefile
Nef_3/examples/Nef_3/Makefile
Nef_3/examples/Nef_3/comparison
Nef_3/examples/Nef_3/complex_construction
Nef_3/examples/Nef_3/exploration_SM
Nef_3/examples/Nef_3/extended_kernel
Nef_3/examples/Nef_3/handling_double_coordinates
Nef_3/examples/Nef_3/interface_polyhedron
Nef_3/examples/Nef_3/nefIO
Nef_3/examples/Nef_3/nef_3_construction
Nef_3/examples/Nef_3/nef_3_point_location
Nef_3/examples/Nef_3/nef_3_simple
Nef_3/examples/Nef_3/offIO
Nef_3/examples/Nef_3/point_set_operations
Nef_3/examples/Nef_3/polygon_construction
Nef_3/examples/Nef_3/polyline_construction
Nef_3/examples/Nef_3/set_operations
Nef_3/examples/Nef_3/shell_exploration
Nef_3/examples/Nef_3/topological_operations
Nef_3/examples/Nef_3/transformation
Nef_3/test/Nef_3/Makefile
Nef_3/test/Nef_3/Nef_3_problematic_construction
Nef_3/test/Nef_3/data/temp.nef3
Nef_3/test/Nef_3/nary
Nef_3/test/Nef_3/test_with_extended_homogeneous
Nef_3/test/Nef_3/test_with_homogeneous
Nef_3/test/Nef_3/test_with_lazy
Number_types/test/Number_types/CORE_BigFloat
Number_types/test/Number_types/CORE_BigInt
Number_types/test/Number_types/CORE_BigRat
Number_types/test/Number_types/CORE_Expr
Number_types/test/Number_types/Coercion_traits
Number_types/test/Number_types/Counted_number
Number_types/test/Number_types/Gmpfi
Number_types/test/Number_types/Gmpfr
Number_types/test/Number_types/Gmpfr_bug
Number_types/test/Number_types/Gmpq
Number_types/test/Number_types/Gmpq_new
Number_types/test/Number_types/Gmpz
Number_types/test/Number_types/Gmpzf_new
Number_types/test/Number_types/Interval_nt
Number_types/test/Number_types/Interval_nt_new
Number_types/test/Number_types/Lazy_exact_nt
Number_types/test/Number_types/Lazy_exact_nt_new
Number_types/test/Number_types/MP_Float
Number_types/test/Number_types/MP_Float_exact
Number_types/test/Number_types/NT_checker
Number_types/test/Number_types/Nef_polynomial
Number_types/test/Number_types/Quotient
Number_types/test/Number_types/Quotient_new
Number_types/test/Number_types/Root_of_traits
Number_types/test/Number_types/Sqrt_extension
Number_types/test/Number_types/_test_valid_finite_double
Number_types/test/Number_types/_test_valid_finite_float
Number_types/test/Number_types/bench_interval
Number_types/test/Number_types/cgal_test
Number_types/test/Number_types/cgal_test_with_cmake
Number_types/test/Number_types/constant
Number_types/test/Number_types/double
Number_types/test/Number_types/doubletst
Number_types/test/Number_types/eigen
Number_types/test/Number_types/float
Number_types/test/Number_types/floattst
Number_types/test/Number_types/int
Number_types/test/Number_types/ioformat
Number_types/test/Number_types/known_bit_size_integers
Number_types/test/Number_types/leda_bigfloat
Number_types/test/Number_types/leda_bigfloat_interval
Number_types/test/Number_types/leda_integer
Number_types/test/Number_types/leda_rational
Number_types/test/Number_types/leda_real
Number_types/test/Number_types/long_double
Number_types/test/Number_types/long_doubletst
Number_types/test/Number_types/long_long
Number_types/test/Number_types/mpq_class
Number_types/test/Number_types/mpz_class
Number_types/test/Number_types/quotient_io
Number_types/test/Number_types/root_of_2
Number_types/test/Number_types/rounding_modes
Number_types/test/Number_types/simplest_rational
Number_types/test/Number_types/test_nt_Coercion_traits
Number_types/test/Number_types/to_interval_test
Number_types/test/Number_types/unsigned
Number_types/test/Number_types/utilities
Optimisation_basic/*.aux
Optimisation_basic/*.bbl
Optimisation_basic/*.blg
Optimisation_basic/*.dvi
Optimisation_basic/*.idx
Optimisation_basic/*.ilg
Optimisation_basic/*.ind
Optimisation_basic/*.log
Optimisation_basic/*.mxp
Optimisation_basic/*.toc
Optimisation_basic/.dep
Optimisation_basic/.obj
Optimisation_basic/.tmp
Optimisation_basic/Makefile
Optimisation_basic/bin
Optimisation_basic/src/Optimisation
Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/Makefile
Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/Periodic_3_triangulation_3.qch
Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/demo_delaunay_qt
Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/moc_*.cpp
Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/ui_*.h
Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/Periodic_Lloyd_3.qch
Periodic_3_triangulation_3/test/Periodic_3_triangulation_3/Test_tds_IO_3
Periodic_3_triangulation_3/test/Periodic_3_triangulation_3/cgal_test_with_cmake
Periodic_3_triangulation_3/test/Periodic_3_triangulation_3/test_periodic_3_alpha_shape_3
Periodic_3_triangulation_3/test/Periodic_3_triangulation_3/test_periodic_3_delaunay_3
Periodic_3_triangulation_3/test/Periodic_3_triangulation_3/test_periodic_3_delaunay_hierarchy_3
Periodic_3_triangulation_3/test/Periodic_3_triangulation_3/test_periodic_3_offset_3
Periodic_3_triangulation_3/test/Periodic_3_triangulation_3/test_periodic_3_triangulation_3
Periodic_3_triangulation_3/test/Periodic_3_triangulation_3/test_periodic_3_triangulation_tds
Periodic_3_triangulation_3/test/Periodic_3_triangulation_3/test_periodic_3_triangulation_traits_C_3
Periodic_3_triangulation_3/test/Periodic_3_triangulation_3/test_periodic_3_triangulation_traits_H_3
Periodic_3_triangulation_3/test/Periodic_3_triangulation_3/test_periodic_3_triangulation_traits_SC_3
Periodic_3_triangulation_3/test/Periodic_3_triangulation_3/test_periodic_3_triangulation_traits_SH_3
Point_set_2/test/Point_set_2/cgal_test_with_cmake
Point_set_2/test/Point_set_2/nearest_nb1
Point_set_2/test/Point_set_2/nearest_nb_fcn
Point_set_2/test/Point_set_2/range_search_fcn
Point_set_2/test/Point_set_2/rs_check_empty
Point_set_2/test/Point_set_2/test_range_search
Point_set_processing_3/examples/Point_set_processing_3/*.kdev*
Point_set_processing_3/examples/Point_set_processing_3/*.ncb
Point_set_processing_3/examples/Point_set_processing_3/*.off
Point_set_processing_3/examples/Point_set_processing_3/*.pwn
Point_set_processing_3/examples/Point_set_processing_3/*.suo
Point_set_processing_3/examples/Point_set_processing_3/*_example
Point_set_processing_3/examples/Point_set_processing_3/.cdtproject
Point_set_processing_3/examples/Point_set_processing_3/.project
Point_set_processing_3/examples/Point_set_processing_3/.settings
Point_set_processing_3/examples/Point_set_processing_3/AQtimeProject
Point_set_processing_3/examples/Point_set_processing_3/Makefile
Point_set_processing_3/examples/Point_set_processing_3/normal_estimation
Point_set_processing_3/examples/Point_set_processing_3/oni_copy.xyz
Point_set_processing_3/examples/Point_set_processing_3/property_map
Point_set_processing_3/examples/Point_set_processing_3/sphere_20k_copy.xyz
Point_set_processing_3/include/CGAL/*.object_pool
Point_set_processing_3/include/CGAL/*.pool
Point_set_processing_3/include/CGAL/*.reserve_RAM
Point_set_processing_3/include/CGAL/*.set_se_translator
Point_set_processing_3/myrun_testsuite_with_cmake.bat
Point_set_processing_3/test/Point_set_processing_3/*.kdev*
Point_set_processing_3/test/Point_set_processing_3/*.ncb
Point_set_processing_3/test/Point_set_processing_3/*.suo
Point_set_processing_3/test/Point_set_processing_3/.cdtproject
Point_set_processing_3/test/Point_set_processing_3/.project
Point_set_processing_3/test/Point_set_processing_3/.settings
Point_set_processing_3/test/Point_set_processing_3/AQtimeProject
Point_set_processing_3/test/Point_set_processing_3/Makefile
Point_set_processing_3/test/Point_set_processing_3/analysis_test
Point_set_processing_3/test/Point_set_processing_3/normal_estimation_test
Point_set_processing_3/test/Point_set_processing_3/remove_outliers_test
Point_set_processing_3/test/Point_set_processing_3/smoothing_test
/Polygon_mesh_processing/test/Polygon_mesh_processing/blobby_2cc_id.off
/Polygon_mesh_processing/test/Polygon_mesh_processing/elephant_triangle_hole.off
/Polygon_mesh_processing/test/Polygon_mesh_processing/faired.off
/Polygon_mesh_processing/test/Polygon_mesh_processing/data/quad.polylines.txt.off
/Polygon_mesh_processing/test/Polygon_mesh_processing/data/triangle.polylines.txt.off
/Polygon_mesh_processing/test/Polygon_mesh_processing/elephant-oriented.off
/Polygon_mesh_processing/test/Polygon_mesh_processing/elephant-shuffled.off
/Polygon_mesh_processing/test/Polygon_mesh_processing/blobby_2cc_no_id.off
/Polygon_mesh_processing/test/Polygon_mesh_processing/cgal_test_with_cmake
/Polygon_mesh_processing/test/Polygon_mesh_processing/data/U.polylines.txt.off
/Polygon_mesh_processing/test/Polygon_mesh_processing/data/hole1.txt.off
/Polygon_mesh_processing/test/Polygon_mesh_processing/data/hole2.txt.off
/Polygon_mesh_processing/test/Polygon_mesh_processing/data/hole3.txt.off
/Polygon_mesh_processing/test/Polygon_mesh_processing/data/hole4.txt.off
/Polygon_mesh_processing/test/Polygon_mesh_processing/data/planar.polylines.txt.off
/Polygon_mesh_processing/test/Polygon_mesh_processing/elephant_quad_hole.off
Polyhedron/demo/Polyhedron/*.cpp_parameters
Polyhedron/demo/Polyhedron/*.dir
Polyhedron/demo/Polyhedron/*.ii
Polyhedron/demo/Polyhedron/*.kdev*
Polyhedron/demo/Polyhedron/*.off
Polyhedron/demo/Polyhedron/*.s
Polyhedron/demo/Polyhedron/*_moc.cpp
Polyhedron/demo/Polyhedron/.qglviewer*.xml
Polyhedron/demo/Polyhedron/Makefile
Polyhedron/demo/Polyhedron/Polyhedron_3
Polyhedron/demo/Polyhedron/moc_*.h
Polyhedron/demo/Polyhedron/qrc_*.cxx
Polyhedron/demo/Polyhedron/snapshot.*
Polyhedron/demo/Polyhedron/ui_*.h
Polyhedron/test/Polyhedron/*.kdev*
Polyhedron/test/Polyhedron/Makefile
Polyhedron/test/Polyhedron/cgal_test_with_cmake
Polyhedron/test/Polyhedron/test_polyhedron
Polynomial/test/Polynomial/Exponent_vector
Polynomial/test/Polynomial/Interpolator
Polynomial/test/Polynomial/Polynomial_traits_d
Polynomial/test/Polynomial/Polynomial_type_generator
Polynomial/test/Polynomial/Polynomial_using_core
Polynomial/test/Polynomial/Polynomial_using_leda
Polynomial/test/Polynomial/cgal_test_with_cmake
Polynomial/test/Polynomial/modular_gcd_utcf_algorithm_M
Polynomial/test/Polynomial/modular_gcd_utcf_dfai
Polynomial/test/Polynomial/modular_gcd_utcf_pure_wang
Polynomial/test/Polynomial/modular_gcd_utcf_with_wang
Polynomial/test/Polynomial/modular_gcd_utils
Polynomial/test/Polynomial/polynomial_functions
Polynomial/test/Polynomial/polynomial_gcd
Polynomial/test/Polynomial/polynomial_utils
Polynomial/test/Polynomial/resultant
Polynomial/test/Polynomial/sturm_habicht_sequence
Polynomial/test/Polynomial/subresultants
Polynomial/test/Polynomial/test_polynomial_Coercion_traits
Polynomial/test/Polynomial/test_polynomial_Get_arithmetic_kernel
Polynomial/test/Polynomial/test_subresultants
Polytope_distance_d/*.aux
Polytope_distance_d/*.bbl
Polytope_distance_d/*.blg
Polytope_distance_d/*.dvi
Polytope_distance_d/*.idx
Polytope_distance_d/*.ilg
Polytope_distance_d/*.ind
Polytope_distance_d/*.log
Polytope_distance_d/*.mxp
Polytope_distance_d/*.toc
Polytope_distance_d/.dep
Polytope_distance_d/.obj
Polytope_distance_d/.tmp
Polytope_distance_d/Makefile
Polytope_distance_d/bin
Polytope_distance_d/test/Polytope_distance_d/cgal_test_with_cmake
Polytope_distance_d/test/Polytope_distance_d/test_Polytope_distance_d_d
Principal_component_analysis/test/Principal_component_analysis/bounding_box
Principal_component_analysis/test/Principal_component_analysis/cgal_test_with_cmake
Principal_component_analysis/test/Principal_component_analysis/linear_least_squares_fitting_circles_2
Principal_component_analysis/test/Principal_component_analysis/linear_least_squares_fitting_cuboids_3
Principal_component_analysis/test/Principal_component_analysis/linear_least_squares_fitting_points_2
Principal_component_analysis/test/Principal_component_analysis/linear_least_squares_fitting_points_3
Principal_component_analysis/test/Principal_component_analysis/linear_least_squares_fitting_rectangles_2
Principal_component_analysis/test/Principal_component_analysis/linear_least_squares_fitting_segments_2
Principal_component_analysis/test/Principal_component_analysis/linear_least_squares_fitting_segments_3
Principal_component_analysis/test/Principal_component_analysis/linear_least_squares_fitting_spheres_3
Principal_component_analysis/test/Principal_component_analysis/linear_least_squares_fitting_tetrahedra_3
Principal_component_analysis/test/Principal_component_analysis/linear_least_squares_fitting_triangles_2
Principal_component_analysis/test/Principal_component_analysis/linear_least_squares_fitting_triangles_3
Principal_component_analysis/test/Principal_component_analysis/test_barycenter
Principal_component_analysis/test/Principal_component_analysis/test_bounding_box
Principal_component_analysis/test/Principal_component_analysis/test_linear_least_squares_fitting_circles_2
Principal_component_analysis/test/Principal_component_analysis/test_linear_least_squares_fitting_cuboids_3
Principal_component_analysis/test/Principal_component_analysis/test_linear_least_squares_fitting_points_2
Principal_component_analysis/test/Principal_component_analysis/test_linear_least_squares_fitting_points_3
Principal_component_analysis/test/Principal_component_analysis/test_linear_least_squares_fitting_rectangles_2
Principal_component_analysis/test/Principal_component_analysis/test_linear_least_squares_fitting_segments_2
Principal_component_analysis/test/Principal_component_analysis/test_linear_least_squares_fitting_segments_3
Principal_component_analysis/test/Principal_component_analysis/test_linear_least_squares_fitting_spheres_3
Principal_component_analysis/test/Principal_component_analysis/test_linear_least_squares_fitting_tetrahedra_3
Principal_component_analysis/test/Principal_component_analysis/test_linear_least_squares_fitting_triangles_2
Principal_component_analysis/test/Principal_component_analysis/test_linear_least_squares_fitting_triangles_3
/Profiling_tools/test/Profiling_tools/cgal_test_with_cmake
/Profiling_tools/test/Profiling_tools/test_memory_sizer
/Profiling_tools/test/Profiling_tools/test_timer
QP_solver/documentation/Degeneracies.aux
QP_solver/documentation/Degeneracies.log
QP_solver/documentation/Degeneracies.pdf
QP_solver/documentation/Degeneracies.synctex.gz
QP_solver/documentation/UpdateZ.aux
QP_solver/documentation/UpdateZ.log
QP_solver/documentation/UpdateZ.pdf
QP_solver/documentation/UpdateZ.synctex.gz
Qt_widget/.env
Qt_widget/test/Qt_widget/test_qt_version
Random_numbers/*.aux
Random_numbers/*.bbl
Random_numbers/*.blg
Random_numbers/*.dvi
Random_numbers/*.idx
Random_numbers/*.ilg
Random_numbers/*.ind
Random_numbers/*.log
Random_numbers/*.mxp
Random_numbers/*.toc
Random_numbers/.dep
Random_numbers/.obj
Random_numbers/.tmp
Random_numbers/Makefile
Random_numbers/bin
Ridges_3/examples/Ridges_3/Compute_Ridges_Umbilics
Ridges_3/examples/Ridges_3/Makefile
Ridges_3/test/Ridges_3/Makefile
Ridges_3/test/Ridges_3/ridge_test
STL_Extension/test/STL_Extension/cgal_test_with_cmake
STL_Extension/test/STL_Extension/test_Cache
STL_Extension/test/STL_Extension/test_Compact_container
STL_Extension/test/STL_Extension/test_Concatenate_iterator
STL_Extension/test/STL_Extension/test_Flattening_iterator
STL_Extension/test/STL_Extension/test_Handle_with_policy
STL_Extension/test/STL_Extension/test_In_place_list
STL_Extension/test/STL_Extension/test_Modifiable_priority_queue
STL_Extension/test/STL_Extension/test_Nested_iterator
STL_Extension/test/STL_Extension/test_Uncertain
STL_Extension/test/STL_Extension/test_complexity_tags
STL_Extension/test/STL_Extension/test_composition
STL_Extension/test/STL_Extension/test_dispatch_output
STL_Extension/test/STL_Extension/test_is_iterator
STL_Extension/test/STL_Extension/test_is_streamable
STL_Extension/test/STL_Extension/test_lexcompare_outputrange
STL_Extension/test/STL_Extension/test_multiset
STL_Extension/test/STL_Extension/test_namespaces
STL_Extension/test/STL_Extension/test_nth_element
STL_Extension/test/STL_Extension/test_stl_extension
STL_Extension/test/STL_Extension/test_type_traits
STL_Extension/test/STL_Extension/test_vector
SearchStructures/test/RangeSegmentTrees/cgal_test_with_cmake
SearchStructures/test/RangeSegmentTrees/test_segment_tree_set_2
Skin_surface_3/.cdtproject
Skin_surface_3/.project
Skin_surface_3/.settings
Skin_surface_3/test/Skin_surface_3/*.off
Skin_surface_3/test/Skin_surface_3/cgal_test
Skin_surface_3/test/Skin_surface_3/err.txt
Skin_surface_3/test/Skin_surface_3/makefile
Skin_surface_3/test/Skin_surface_3/msgs.txt
Skin_surface_3/test/Skin_surface_3/subdivision_test
Spatial_sorting/test/Spatial_sorting/cgal_test_with_cmake
Stream_lines_2/demo/Stream_lines_2/Makefile
Stream_lines_2/demo/Stream_lines_2/streamlines
Surface_mesh_parameterization/examples/Surface_mesh_parameterization/*.eps
Surface_mesh_parameterization/examples/Surface_mesh_parameterization/*.kdev*
Surface_mesh_parameterization/examples/Surface_mesh_parameterization/*.ncb
Surface_mesh_parameterization/examples/Surface_mesh_parameterization/*_extra.*
Surface_mesh_parameterization/examples/Surface_mesh_parameterization/*_parameterization
Surface_mesh_parameterization/examples/Surface_mesh_parameterization/.cdtproject
Surface_mesh_parameterization/examples/Surface_mesh_parameterization/.project
Surface_mesh_parameterization/examples/Surface_mesh_parameterization/.settings
Surface_mesh_parameterization/examples/Surface_mesh_parameterization/Complete_parameterization_example
Surface_mesh_parameterization/examples/Surface_mesh_parameterization/Makefile
Surface_mesh_parameterization/examples/Surface_mesh_parameterization/Polyhedron_parameterization5.C.star
Surface_mesh_parameterization/examples/Surface_mesh_parameterization/cgal_test
Surface_mesh_parameterization/examples/Surface_mesh_parameterization/data/extras
Surface_mesh_parameterization/examples/Surface_mesh_parameterization/makefile
Surface_mesh_parameterization/examples/Surface_mesh_parameterization/test
Surface_mesh_parameterization/examples/Surface_mesh_parameterization/test[!!-~](release)
Surface_mesh_parameterization/test/Surface_mesh_parameterization/*.kdev*
Surface_mesh_parameterization/test/Surface_mesh_parameterization/*.ncb
Surface_mesh_parameterization/test/Surface_mesh_parameterization/*.suo
Surface_mesh_parameterization/test/Surface_mesh_parameterization/.cdtproject
Surface_mesh_parameterization/test/Surface_mesh_parameterization/.project
Surface_mesh_parameterization/test/Surface_mesh_parameterization/.settings
Surface_mesh_parameterization/test/Surface_mesh_parameterization/Makefile
Surface_mesh_parameterization/test/Surface_mesh_parameterization/cgal_test
Surface_mesh_parameterization/test/Surface_mesh_parameterization/extensive_parameterization_test
Surface_mesh_parameterization/test/Surface_mesh_parameterization/makefile
Surface_mesher/.*.deps
Surface_mesher/demo/Surface_mesher/#[!!-~]cmake[!!-~]stuff:
Surface_mesher/demo/Surface_mesher/.*.deps
Surface_mesher/demo/Surface_mesher/.qglviewer.xml
Surface_mesher/demo/Surface_mesher/Makefile
Surface_mesher/demo/Surface_mesher/Surface_mesher
Surface_mesher/demo/Surface_mesher/VTK/Makefile
Surface_mesher/demo/Surface_mesher/VTK/mesh_a_3D_image
Surface_mesher/demo/Surface_mesher/VTK/mesh_a_VTK_3D_image
Surface_mesher/demo/Surface_mesher/cgal.prf
Surface_mesher/demo/Surface_mesher/dump.ff
Surface_mesher/demo/Surface_mesher/dump_of_initial_points_of_*
Surface_mesher/demo/Surface_mesher/implicit_surface_mesher
Surface_mesher/demo/Surface_mesher/input_dump.off
Surface_mesher/demo/Surface_mesher/moc_*.cpp
Surface_mesher/demo/Surface_mesher/my_makefile
Surface_mesher/demo/Surface_mesher/out*.off
Surface_mesher/demo/Surface_mesher/polyhedron_remesher
Surface_mesher/demo/Surface_mesher/polyhedron_remesher_with_edges
Surface_mesher/demo/Surface_mesher/qrc_*.c*
Surface_mesher/demo/Surface_mesher/ui_*.h
Surface_mesher/doxygen
Surface_mesher/examples/Surface_mesher/.*.deps
Surface_mesher/examples/Surface_mesher/mesh_a_3d_gray_image
Surface_mesher/examples/Surface_mesher/mesh_an_implicit_function
Surface_mesher/examples/Surface_mesher/my_makefile
Surface_mesher/examples/Surface_mesher/out.off
Surface_mesher/examples/Surface_mesher/sphere_union-before.mesh
Surface_mesher/examples/Surface_mesher/sphere_union.mesh
Surface_mesher/examples/Surface_mesher/sphere_union.off
Surface_mesher/examples/Surface_mesher/test_imageio
Surface_mesher/test/Surface_mesher/.*.deps
Surface_mesher/test/Surface_mesher/combined_spheres
Surface_mesher/test/Surface_mesher/implicit_surface_mesher_test
Surface_mesher/test/Surface_mesher/internal-test-surface-mesher
Surface_mesher/test/Surface_mesher/my_makefile
Surface_mesher/test/Surface_mesher/test_c2t3_iterators
Surface_mesher/test/Surface_mesher/test_canonical_edge
Surface_mesher/test/Surface_mesher/test_robust_circumcenter
Surface_reconstruction_points_3/demo/Surface_reconstruction_points_3/*.kdev*
Surface_reconstruction_points_3/demo/Surface_reconstruction_points_3/Makefile
Surface_reconstruction_points_3/demo/Surface_reconstruction_points_3/Point_set_demo
Surface_reconstruction_points_3/examples/Surface_reconstruction_points_3/*.kdev*
Surface_reconstruction_points_3/examples/Surface_reconstruction_points_3/*.ncb
Surface_reconstruction_points_3/examples/Surface_reconstruction_points_3/*.off
Surface_reconstruction_points_3/examples/Surface_reconstruction_points_3/*.pwn
Surface_reconstruction_points_3/examples/Surface_reconstruction_points_3/*.suo
Surface_reconstruction_points_3/examples/Surface_reconstruction_points_3/*_example
Surface_reconstruction_points_3/examples/Surface_reconstruction_points_3/.cdtproject
Surface_reconstruction_points_3/examples/Surface_reconstruction_points_3/.project
Surface_reconstruction_points_3/examples/Surface_reconstruction_points_3/.settings
Surface_reconstruction_points_3/examples/Surface_reconstruction_points_3/APSS_reconstruction
Surface_reconstruction_points_3/examples/Surface_reconstruction_points_3/AQtimeProject
Surface_reconstruction_points_3/examples/Surface_reconstruction_points_3/Makefile
Surface_reconstruction_points_3/examples/Surface_reconstruction_points_3/poisson_reconstruction
Surface_reconstruction_points_3/include/CGAL/*.object_pool
Surface_reconstruction_points_3/include/CGAL/*.pool
Surface_reconstruction_points_3/include/CGAL/*.reserve_RAM
Surface_reconstruction_points_3/include/CGAL/*.set_se_translator
Surface_reconstruction_points_3/myrun_testsuite_with_cmake.bat
Surface_reconstruction_points_3/test/Surface_reconstruction_points_3/*.kdev*
Surface_reconstruction_points_3/test/Surface_reconstruction_points_3/*.ncb
Surface_reconstruction_points_3/test/Surface_reconstruction_points_3/*.suo
Surface_reconstruction_points_3/test/Surface_reconstruction_points_3/.cdtproject
Surface_reconstruction_points_3/test/Surface_reconstruction_points_3/.project
Surface_reconstruction_points_3/test/Surface_reconstruction_points_3/.settings
Surface_reconstruction_points_3/test/Surface_reconstruction_points_3/APSS_reconstruction_test
Surface_reconstruction_points_3/test/Surface_reconstruction_points_3/AQtimeProject
Surface_reconstruction_points_3/test/Surface_reconstruction_points_3/Makefile
Surface_reconstruction_points_3/test/Surface_reconstruction_points_3/poisson_reconstruction_test
Testsuite/test/myrun_testsuite_with_cmake
Triangulation/benchmark/Triangulation/*.dot
Triangulation/benchmark/Triangulation/Makefile
Triangulation/benchmark/Triangulation/makefile
Triangulation/benchmark/Triangulation/dc
Triangulation/benchmark/Triangulation/gmon.out
Triangulation/benchmark/Triangulation/profile
Triangulation/commit_msg
Triangulation/doc_html
Triangulation/doc_pdf
Triangulation/doc_ps
Triangulation/doc_tex/Pure_complex.*
Triangulation/doc_tex/Triangulation/main.aux
Triangulation/doc_tex/Triangulation/main.hax
Triangulation/doc_tex/Triangulation_ref/main.aux
Triangulation/doc_tex/Triangulation_ref/main.hax
Triangulation/examples/Triangulation/Makefile
Triangulation/examples/Triangulation/makefile
Triangulation/examples/Triangulation/compile
Triangulation/examples/Triangulation/pure_complex
Triangulation/examples/Triangulation/pure_complex_data_structure
Triangulation/test/Triangulation/Makefile
Triangulation/test/Triangulation/makefile
Triangulation/test/Triangulation/compile
Triangulation/test/Triangulation/dc
Triangulation/test/Triangulation/output-pcds*
Triangulation/test/Triangulation/pc
Triangulation/test/Triangulation/pcds
Triangulation/test/Triangulation/torture
/Triangulation/examples/Triangulation/cgal_test_with_cmake
/Triangulation/test/Triangulation/cgal_test_with_cmake
/Triangulation/test/Triangulation/output-tds-*
Triangulation_2/cgal_test_with_cmake
Triangulation_2/demo/Triangulation_2/Makefile
Triangulation_2/demo/Triangulation_2/constrained
Triangulation_2/demo/Triangulation_2/constrained_delaunay_triangulation_2
Triangulation_2/demo/Triangulation_2/delaunay_triangulation_2
Triangulation_2/demo/Triangulation_2/regular_triangulation_2
Triangulation_2/examples/Triangulation_2/cgal_test_with_cmake
Triangulation_2/examples/Triangulation_2/regular
Triangulation_2/test/Triangulation_2/Makefile
Triangulation_2/test/Triangulation_2/T??.triangulation
Triangulation_2/test/Triangulation_2/cgal_test_with_cmake
Triangulation_2/test/Triangulation_2/file_tds*
Triangulation_2/test/Triangulation_2/makefile
Triangulation_2/test/Triangulation_2/test_cdt_degenerate_case
Triangulation_2/test/Triangulation_2/test_const_del_triangulation_2
Triangulation_2/test/Triangulation_2/test_const_triang_plus_2
Triangulation_2/test/Triangulation_2/test_constrained_triangulation_2
Triangulation_2/test/Triangulation_2/test_delaunay_hierarchy_2
Triangulation_2/test/Triangulation_2/test_delaunay_triangulation_2
Triangulation_2/test/Triangulation_2/test_delaunay_triangulation_proj
Triangulation_2/test/Triangulation_2/test_regular_hierarchy_2
Triangulation_2/test/Triangulation_2/test_regular_triangulation_2
Triangulation_2/test/Triangulation_2/test_structural_filtering_traits
Triangulation_2/test/Triangulation_2/test_triangulation_2
Triangulation_2/test/Triangulation_2/test_triangulation_2_bis
Triangulation_2/test/Triangulation_2/test_triangulation_geom_traits
Triangulation_2/test/Triangulation_2/test_triangulation_tds
Triangulation_2/test/Triangulation_2/vrml_tds*
Triangulation_3/benchmark/Triangulation_3/cgal_test_with_cmake