revert solving precission to 1e-6 dou to too much cases failing

This commit is contained in:
Stefan Tröger 2013-08-15 17:48:44 +00:00
parent 483357de77
commit 30e8fc7b8c

View File

@ -66,7 +66,7 @@ struct Dogleg {
typedef typename Kernel::number_type number_type;
number_type tolg, tolx, tolf;
Dogleg() : tolg(1e-40), tolx(1e-20), tolf(1e-8) {
Dogleg() : tolg(1e-40), tolx(1e-20), tolf(1e-6) {
#ifdef USE_LOGGING
log.add_attribute("Tag", attrs::constant< std::string >("Dogleg"));