Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'phrase-extract/extract-ghkm/Subgraph.cpp')
-rw-r--r--phrase-extract/extract-ghkm/Subgraph.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/phrase-extract/extract-ghkm/Subgraph.cpp b/phrase-extract/extract-ghkm/Subgraph.cpp
index 0c941218d..6796cec95 100644
--- a/phrase-extract/extract-ghkm/Subgraph.cpp
+++ b/phrase-extract/extract-ghkm/Subgraph.cpp
@@ -119,12 +119,12 @@ float Subgraph::CalcPcfgScore() const
return score;
}
-void Subgraph::PrintTree(std::ostream &out) const
+void Subgraph::PrintTree(std::ostream &out) const
{
RecursivelyPrintTree(m_root,out);
}
-void Subgraph::RecursivelyPrintTree(const Node *n, std::ostream &out) const
+void Subgraph::RecursivelyPrintTree(const Node *n, std::ostream &out) const
{
NodeType nodeType = n->GetType();
if (nodeType == TREE) {