Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Util2.cpp « legacy « moses2 « contrib - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ffc348090dd59949aafdb298ed761912c4154197 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include "Util2.h"
#include "util/exception.hh"

namespace Moses2
{

class BoolValueException: public util::Exception
{
};

template<>
bool Scan<bool>(const std::string &input)
{
  std::string lc = ToLower(input);
  if (lc == "yes" || lc == "y" || lc == "true" || lc == "1") return true;
  if (lc == "no" || lc == "n" || lc == "false" || lc == "0") return false;
  UTIL_THROW(BoolValueException,
      "Could not interpret " << input << " as a boolean.  After lowercasing, valid values are yes, y, true, 1, no, n, false, and 0.");
}

const std::string ToLower(const std::string& str)
{
  std::string lc(str);
  std::transform(lc.begin(), lc.end(), lc.begin(), (int (*)(int))std::tolower);return
lc  ;
}

}