mirror of https://github.com/CGAL/cgal
replace kernel_type with Kernel_type
This commit is contained in:
parent
9f11bbe3d1
commit
5287b6e200
|
|
@ -21,7 +21,7 @@ public:
|
||||||
the cone boundaries will be computed exactly; otherwise, inexactly using an approximate PI=3.1415...
|
the cone boundaries will be computed exactly; otherwise, inexactly using an approximate PI=3.1415...
|
||||||
This kernel type also decides other types such as SpannerKernel::Point_2, SpannerKernel::Direction_2, etc.
|
This kernel type also decides other types such as SpannerKernel::Point_2, SpannerKernel::Direction_2, etc.
|
||||||
*/
|
*/
|
||||||
typedef SpannerKernel kernel_type;
|
typedef SpannerKernel Kernel_type;
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ public:
|
||||||
the graph will be constructed exactly; otherwise, inexactly using an approximate PI=3.1415...
|
the graph will be constructed exactly; otherwise, inexactly using an approximate PI=3.1415...
|
||||||
This kernel type also decides other types such as SpannerKernel::Point_2, SpannerKernel::Direction_2, etc.
|
This kernel type also decides other types such as SpannerKernel::Point_2, SpannerKernel::Direction_2, etc.
|
||||||
*/
|
*/
|
||||||
typedef SpannerKernel kernel_type;
|
typedef SpannerKernel Kernel_type;
|
||||||
|
|
||||||
/*! The graph type to store the constructed cone based spanner. It should be a model of
|
/*! The graph type to store the constructed cone based spanner. It should be a model of
|
||||||
both concepts MutableGraph and VertexAndEdgeListGraph in BGL. Of the two graph classes provided
|
both concepts MutableGraph and VertexAndEdgeListGraph in BGL. Of the two graph classes provided
|
||||||
|
|
@ -36,7 +36,7 @@ typedef SpannerKernel kernel_type;
|
||||||
If more properties for vertices are needed, they can be added later as external properties using
|
If more properties for vertices are needed, they can be added later as external properties using
|
||||||
property maps.
|
property maps.
|
||||||
*/
|
*/
|
||||||
typedef Graph_ graph_type;
|
typedef Graph_ Graph_type;
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue