# HG changeset patch # User Chris Cannam # Date 1353447077 0 # Node ID 82552664d471c68d45c15d8eae1d2993b9d538c4 # Parent 9f50a5876dd30247a3baaaaec44aec5524c7895f And reduce rather excessive requirements for satisfaction by estimate acceptance diff -r 9f50a5876dd3 -r 82552664d471 NoteHypothesis.cpp --- a/NoteHypothesis.cpp Tue Nov 20 21:30:35 2012 +0000 +++ b/NoteHypothesis.cpp Tue Nov 20 21:31:17 2012 +0000 @@ -79,7 +79,7 @@ } meanConfidence /= m_pending.size(); - int lengthRequired = 10000; + int lengthRequired = 100; if (meanConfidence > 0.0) { lengthRequired = int(2.0 / meanConfidence + 0.5); }