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:
authorTetsuo Kiso <tetsuo-s@is.naist.jp>2011-11-12 04:40:01 +0400
committerTetsuo Kiso <tetsuo-s@is.naist.jp>2011-11-12 04:40:01 +0400
commitce9a628ed0337d051ce7058dcace2fa53df6d884 (patch)
treebcc9d8045725bd8553725b9acfd04b13e7a50a80 /mert/Point.cpp
parent664ffe0130e76a32571965a5f9fce1f6ff176ae1 (diff)
Remove unnecessary semicolons used in end of member functions.
Diffstat (limited to 'mert/Point.cpp')
-rw-r--r--mert/Point.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/mert/Point.cpp b/mert/Point.cpp
index 90d36da5a..590225358 100644
--- a/mert/Point.cpp
+++ b/mert/Point.cpp
@@ -72,7 +72,7 @@ Point::Point(const vector<parameter_t>& init,
m_max[i] = max[optindices[i]];
}
}
-};
+}
double Point::operator*(const FeatureStats& F)const
@@ -90,6 +90,7 @@ double Point::operator*(const FeatureStats& F)const
}
return prod;
}
+
Point Point::operator+(const Point& p2)const
{
assert(p2.size()==size());
@@ -98,7 +99,7 @@ Point Point::operator+(const Point& p2)const
Res[i]+=p2[i];
Res.score=numeric_limits<statscore_t>::max();
return Res;
-};
+}
void Point::operator+=(const Point& p2)
{
@@ -106,8 +107,7 @@ void Point::operator+=(const Point& p2)
for(unsigned i=0; i<size(); i++)
operator[](i)+=p2[i];
score=numeric_limits<statscore_t>::max();
-};
-
+}
Point Point::operator*(float l)const
{
@@ -116,7 +116,7 @@ Point Point::operator*(float l)const
Res[i]*=l;
Res.score=numeric_limits<statscore_t>::max();
return Res;
-};
+}
ostream& operator<<(ostream& o,const Point& P)
{
@@ -126,7 +126,7 @@ ostream& operator<<(ostream& o,const Point& P)
o << w[i] << " ";
// o << "=> " << P.GetScore();
return o;
-};
+}
vector<parameter_t> Point::GetAllWeights()const
{
@@ -141,7 +141,7 @@ vector<parameter_t> Point::GetAllWeights()const
w[it->first]=it->second;
}
return w;
-};
+}