From 044e1f2f7a074d9940c30eee7b800beb070c706d Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Sun, 25 Sep 2011 22:59:24 +0200 Subject: size_t -> unsigned --- dtrain/dtrain.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'dtrain/dtrain.h') diff --git a/dtrain/dtrain.h b/dtrain/dtrain.h index 9bc5be93..ed75a297 100644 --- a/dtrain/dtrain.h +++ b/dtrain/dtrain.h @@ -18,8 +18,8 @@ #include "ksampler.h" #include "pairsampling.h" -#define DTRAIN_DOTS 100 // when to display a '.' -#define DTRAIN_TMP_DIR "/var/hadoop/mapred/local" // put this on a SSD? +#define DTRAIN_DOTS 100 // when to display a '.' +#define DTRAIN_TMP_DIR "/tmp" #define DTRAIN_GRAMMAR_DELIM "########EOS########" using namespace std; @@ -36,20 +36,20 @@ inline ostream& _p(ostream& out) { return out << setiosflags(ios::showpos); } inline ostream& _p2(ostream& out) { return out << setprecision(2); } inline ostream& _p5(ostream& out) { return out << setprecision(5); } inline ostream& _p9(ostream& out) { return out << setprecision(9); } -inline void strsplit(string &s, vector& v, char d = '\t', size_t parts = 0) { +inline void strsplit(string &s, vector& v, char d = '\t', unsigned parts = 0) { stringstream ss(s); string t; - size_t c = 0; + unsigned i = 0; while(true) { - if (parts > 0 && c == parts-1) { + if (parts > 0 && i == parts-1) { getline(ss, t); v.push_back(t); break; } if (!getline(ss, t, d)) break; v.push_back(t); - c++; + i++; } } -- cgit v1.2.3