[Lemon-commits] [lemon_svn] alpar: r1122 - in hugo/trunk/src: hugo/skeletons test work/marci work/peter
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:43:22 CET 2006
Author: alpar
Date: Thu Sep 9 11:18:41 2004
New Revision: 1122
Modified:
hugo/trunk/src/hugo/skeletons/graph.h
hugo/trunk/src/test/graph_test.cc
hugo/trunk/src/work/marci/graph_concept.h
hugo/trunk/src/work/peter/edgepathgraph.h
hugo/trunk/src/work/peter/hierarchygraph.h
Log:
Spell checking (Ereasable ->Erasable), affected also the code.
Modified: hugo/trunk/src/hugo/skeletons/graph.h
==============================================================================
--- hugo/trunk/src/hugo/skeletons/graph.h (original)
+++ hugo/trunk/src/hugo/skeletons/graph.h Thu Sep 9 11:18:41 2004
@@ -456,22 +456,22 @@
/// This function deletes all edges and nodes of the graph.
/// It also frees the memory allocated to store them.
- /// \todo It might belong to \c EraseableGraphSkeleton.
+ /// \todo It might belong to \c ErasableGraphSkeleton.
void clear() { }
};
- /// An empty eraseable graph class.
+ /// An empty erasable graph class.
/// This class is an extension of \c GraphSkeleton. It also makes it
/// possible to erase edges or nodes.
- class EraseableGraphSkeleton : public GraphSkeleton
+ class ErasableGraphSkeleton : public GraphSkeleton
{
public:
/// Defalult constructor.
/// Defalult constructor.
///
- EraseableGraphSkeleton() { }
+ ErasableGraphSkeleton() { }
/// Deletes a node.
/// Deletes node \c n node.
Modified: hugo/trunk/src/test/graph_test.cc
==============================================================================
--- hugo/trunk/src/test/graph_test.cc (original)
+++ hugo/trunk/src/test/graph_test.cc Thu Sep 9 11:18:41 2004
@@ -58,8 +58,8 @@
template void checkCompileGraph<skeleton::GraphSkeleton>
(skeleton::GraphSkeleton &);
-template void checkCompileErasableGraph<skeleton::EraseableGraphSkeleton>
-(skeleton::EraseableGraphSkeleton &);
+template void checkCompileErasableGraph<skeleton::ErasableGraphSkeleton>
+(skeleton::ErasableGraphSkeleton &);
//Compile SmartGraph
template void checkCompileGraph<SmartGraph>(SmartGraph &);
Modified: hugo/trunk/src/work/marci/graph_concept.h
==============================================================================
--- hugo/trunk/src/work/marci/graph_concept.h (original)
+++ hugo/trunk/src/work/marci/graph_concept.h Thu Sep 9 11:18:41 2004
@@ -399,11 +399,11 @@
};
- /// \brief Node-eraseable graph concept.
+ /// \brief Node-erasable graph concept.
///
/// A graph class which provides a function to
/// delete any of its nodes.
- class NodeEraseableGraphConcept : virtual public GraphConcept
+ class NodeErasableGraphConcept : virtual public GraphConcept
{
public:
/// Deletes a node.
@@ -411,11 +411,11 @@
};
- /// \brief Edge-eraseable graph concept.
+ /// \brief Edge-erasable graph concept.
///
/// A graph class which provides a function to delete any
/// of its edges.
- class EdgeEraseableGraphConcept : virtual public GraphConcept
+ class EdgeErasableGraphConcept : virtual public GraphConcept
{
public:
/// Deletes a node.
Modified: hugo/trunk/src/work/peter/edgepathgraph.h
==============================================================================
--- hugo/trunk/src/work/peter/edgepathgraph.h (original)
+++ hugo/trunk/src/work/peter/edgepathgraph.h Thu Sep 9 11:18:41 2004
@@ -364,9 +364,9 @@
};
};
- /// An empty eraseable graph class.
+ /// An empty erasable graph class.
- /// This class provides all the common features of an \e eraseable graph
+ /// This class provides all the common features of an \e erasable graph
/// structure,
/// however completely without implementations and real data structures
/// behind the interface.
@@ -384,7 +384,7 @@
/// like @ref ListGraph or
/// @ref SmartGraph will just refer to this structure.
template <typename P, typename Gact, typename Gsub>
- class EraseableEdgePathGraph : public EdgePathGraph<P, Gact, Gsub>
+ class ErasableEdgePathGraph : public EdgePathGraph<P, Gact, Gsub>
{
public:
/// Deletes a node.
@@ -393,9 +393,9 @@
void erase(typename Gact::Edge e) {actuallayer.erase(e);}
/// Defalult constructor.
- EraseableEdgePathGraph() {}
+ ErasableEdgePathGraph() {}
///Copy consructor.
- EraseableEdgePathGraph(const EdgePathGraph<P, Gact, Gsub> &EPG) {}
+ ErasableEdgePathGraph(const EdgePathGraph<P, Gact, Gsub> &EPG) {}
};
Modified: hugo/trunk/src/work/peter/hierarchygraph.h
==============================================================================
--- hugo/trunk/src/work/peter/hierarchygraph.h (original)
+++ hugo/trunk/src/work/peter/hierarchygraph.h Thu Sep 9 11:18:41 2004
@@ -527,9 +527,9 @@
};
};
- /// An empty eraseable graph class.
+ /// An empty erasable graph class.
- /// This class provides all the common features of an \e eraseable graph
+ /// This class provides all the common features of an \e erasable graph
/// structure,
/// however completely without implementations and real data structures
/// behind the interface.
@@ -546,7 +546,7 @@
/// feature, the documentation of a real graph imlementation
/// like @ref ListGraph or
/// @ref SmartGraph will just refer to this structure.
-template < typename Gact, typename Gsub > class EraseableHierarchyGraph:public HierarchyGraph < Gact,
+template < typename Gact, typename Gsub > class ErasableHierarchyGraph:public HierarchyGraph < Gact,
Gsub
>
{
@@ -563,11 +563,11 @@
}
/// Defalult constructor.
- EraseableHierarchyGraph ()
+ ErasableHierarchyGraph ()
{
}
///Copy consructor.
- EraseableHierarchyGraph (const HierarchyGraph < Gact, Gsub > &EPG)
+ ErasableHierarchyGraph (const HierarchyGraph < Gact, Gsub > &EPG)
{
}
};
More information about the Lemon-commits
mailing list