Increase the time split threshold to a more reasonable value

This commit is contained in:
Patrick Niklaus 2015-03-17 02:13:20 +01:00
parent 02b561edd2
commit 7813dafc96

View File

@ -60,7 +60,7 @@ using HMM = HiddenMarkovModel<CandidateLists>;
using SubMatchingList = std::vector<SubMatching>; using SubMatchingList = std::vector<SubMatching>;
constexpr static const unsigned MAX_BROKEN_STATES = 6; constexpr static const unsigned MAX_BROKEN_STATES = 6;
constexpr static const unsigned MAX_BROKEN_TIME = 30; constexpr static const unsigned MAX_BROKEN_TIME = 60;
constexpr static const double default_beta = 10.0; constexpr static const double default_beta = 10.0;
constexpr static const double default_sigma_z = 4.07; constexpr static const double default_sigma_z = 4.07;