diff options
author | Wu, Ke <wuke@cs.umd.edu> | 2014-10-07 17:41:19 -0400 |
---|---|---|
committer | Wu, Ke <wuke@cs.umd.edu> | 2014-10-07 17:41:19 -0400 |
commit | 577e6e7f9755919f4929235d2320435522e65d76 (patch) | |
tree | 39ddae6bbc1c8d4bff153b8ac8e925c4184120ea /utils/synutils/tsuruoka_maxent.h | |
parent | 00968d1ba03c0603440fe5a765b87869b99a0a93 (diff) |
Make synutils compile
Diffstat (limited to 'utils/synutils/tsuruoka_maxent.h')
-rw-r--r-- | utils/synutils/tsuruoka_maxent.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/utils/synutils/tsuruoka_maxent.h b/utils/synutils/tsuruoka_maxent.h index b5a87404..89b06b97 100644 --- a/utils/synutils/tsuruoka_maxent.h +++ b/utils/synutils/tsuruoka_maxent.h @@ -7,19 +7,19 @@ #define TSURUOKA_MAXENT_H_ #include "utility.h" -#include "stringlib.h" -#include "maxent-3.0/maxent.h" +#include "utils/stringlib.h" +#include "utils/synutils/maxent-3.0/maxent.h" #include <assert.h> #include <vector> #include <string> #include <string.h> -#include <tr1/unordered_map> +#include <unordered_map> using namespace std; -typedef std::tr1::unordered_map<std::string, int> Map; -typedef std::tr1::unordered_map<std::string, int>::iterator Iterator; +typedef std::unordered_map<std::string, int> Map; +typedef std::unordered_map<std::string, int>::iterator Iterator; struct Tsuruoka_Maxent { Tsuruoka_Maxent(const char* pszModelFName) { |