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:
authorbhaddow <bhaddow@1f5c12ca-751b-0410-a591-d2e778427230>2008-05-16 00:32:37 +0400
committerbhaddow <bhaddow@1f5c12ca-751b-0410-a591-d2e778427230>2008-05-16 00:32:37 +0400
commit1a6dcf5e36313919e5017cc7dcbf036765cb9872 (patch)
tree9a5a9baba34325e4554356934ee0e043f5f02c82 /mert/ScoreArray.h
parent6112215974a1d36ada170a6032e4c51f5f27b5be (diff)
remove buffers
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@1715 1f5c12ca-751b-0410-a591-d2e778427230
Diffstat (limited to 'mert/ScoreArray.h')
-rw-r--r--mert/ScoreArray.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/mert/ScoreArray.h b/mert/ScoreArray.h
index fcaa6e2dc..63e95d960 100644
--- a/mert/ScoreArray.h
+++ b/mert/ScoreArray.h
@@ -30,8 +30,6 @@ protected:
vector<ScoreStats> array_;
private:
- char databuf_[BUFSIZ];
- size_t bufLen_;
int idx; // idx to identify the utterance, it can differ from the index inside the vector
std::string score_type;
@@ -53,8 +51,6 @@ public:
inline size_t size(){ return array_.size(); }
- inline size_t memsize(){ return bufLen_; }
-
void savetxt(ofstream& outFile);
void savebin(ofstream& outFile);
void save(ofstream& outFile, bool bin=false);