diff options
author | Chris Dyer <cdyer@cab.ark.cs.cmu.edu> | 2012-10-15 23:20:41 -0400 |
---|---|---|
committer | Chris Dyer <cdyer@cab.ark.cs.cmu.edu> | 2012-10-15 23:20:41 -0400 |
commit | dc435732dbe8929aac900fef8b1d454291769862 (patch) | |
tree | 3c60cffe9a0a342376aeec02c397c67b2ecebab0 /utils | |
parent | f49ebcba9974a60ec3df2b6c97c7048186a5954d (diff) |
get rid of nested class that was causing header polution
Diffstat (limited to 'utils')
-rw-r--r-- | utils/weights.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/weights.cc b/utils/weights.cc index f56e2a20..575877b6 100644 --- a/utils/weights.cc +++ b/utils/weights.cc @@ -34,7 +34,7 @@ void Weights::InitFromFile(const string& filename, int weight_count = 0; bool fl = false; string buf; - weight_t val = 0; + double val = 0; while (in) { getline(in, buf); if (buf.size() == 0) continue; @@ -53,7 +53,7 @@ void Weights::InitFromFile(const string& filename, if (feature_list) { feature_list->push_back(buf.substr(start, end - start)); } while(end < buf.size() && buf[end] == ' ') ++end; val = strtod(&buf.c_str()[end], NULL); - if (isnan(val)) { + if (std::isnan(val)) { cerr << FD::Convert(fid) << " has weight NaN!\n"; abort(); } @@ -127,8 +127,8 @@ void Weights::InitSparseVector(const vector<weight_t>& dv, void Weights::SanityCheck(const vector<weight_t>& w) { for (unsigned i = 0; i < w.size(); ++i) { - assert(!isnan(w[i])); - assert(!isinf(w[i])); + assert(!std::isnan(w[i])); + assert(!std::isinf(w[i])); } } |