diff options
author | philblunsom <philblunsom@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-07-15 03:39:32 +0000 |
---|---|---|
committer | philblunsom <philblunsom@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-07-15 03:39:32 +0000 |
commit | c0eee37401d3731555346cb260330049b5dc99e7 (patch) | |
tree | a34bcd2309c23ca4d02ab3938f888a349aad12b2 /gi/pyp-topics/src/mpi-pyp.hh | |
parent | a5b1162c68d6ff5bc52b646efb563a0077cd1d2a (diff) |
working on the mpi version
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@257 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'gi/pyp-topics/src/mpi-pyp.hh')
-rw-r--r-- | gi/pyp-topics/src/mpi-pyp.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gi/pyp-topics/src/mpi-pyp.hh b/gi/pyp-topics/src/mpi-pyp.hh index dc47244b..3396f92b 100644 --- a/gi/pyp-topics/src/mpi-pyp.hh +++ b/gi/pyp-topics/src/mpi-pyp.hh @@ -32,7 +32,7 @@ public: // using google::sparse_hash_map<Dish,int>::begin; // using google::sparse_hash_map<Dish,int>::end; - PYP(double a, double b, unsigned long seed = 0, Hash hash=Hash()); + PYP(double a, double b, Hash hash=Hash()); int increment(Dish d, double p0); int decrement(Dish d); @@ -153,7 +153,7 @@ private: }; template <typename Dish, typename Hash> -PYP<Dish,Hash>::PYP(double a, double b, unsigned long seed, Hash) +PYP<Dish,Hash>::PYP(double a, double b, Hash) : std::tr1::unordered_map<Dish, int, Hash>(10), _a(a), _b(b), //: google::sparse_hash_map<Dish, int, Hash>(10), _a(a), _b(b), _a_beta_a(1), _a_beta_b(1), _b_gamma_s(1), _b_gamma_c(1), |