replace kernel_type with Kernel_type

This commit is contained in:
Weisheng Si 2015-12-01 12:45:03 +11:00
parent 9f11bbe3d1
commit 5287b6e200
2 changed files with 3 additions and 3 deletions

View File

@ -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;
/// @} /// @}

View File

@ -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;
/// @} /// @}