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:
authorjfouet <jfouet@1f5c12ca-751b-0410-a591-d2e778427230>2008-05-16 11:09:15 +0400
committerjfouet <jfouet@1f5c12ca-751b-0410-a591-d2e778427230>2008-05-16 11:09:15 +0400
commitbb42cb0dd591fa91d3ae63a2380a1ba6caed83a2 (patch)
tree1b43a912453ae087e6b6347a3fef2978c3ccc570 /mert/Point.h
parentad79af41dfb7160c11521bdae1b1e3db63d18a56 (diff)
bugfixes+ introduction of verbose level
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@1723 1f5c12ca-751b-0410-a591-d2e778427230
Diffstat (limited to 'mert/Point.h')
-rw-r--r--mert/Point.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/mert/Point.h b/mert/Point.h
index 723a146d0..150ae10b7 100644
--- a/mert/Point.h
+++ b/mert/Point.h
@@ -30,6 +30,7 @@ class Point:public parameters_t{
Point():parameters_t(dim){};
Point(parameters_t init):parameters_t(init){assert(init.size()==dim);};
void Randomize(const parameters_t& min,const parameters_t& max);
+
double operator*(const FeatureStats&)const;//compute the feature function
Point operator+(const Point&)const;
Point operator*(float)const;