Relaxed test slightly to avoid false alarm in visual studio 2005

This commit is contained in:
Davis King 2012-12-28 09:10:57 -05:00
parent 6b74536103
commit c6df93f5b7

View File

@ -314,7 +314,7 @@ namespace
rs.add(labels[k]*df(samples[k]));
}
}
DLIB_TEST_MSG(std::abs(rs.min()-1) < 1e-7, std::abs(rs.min()-1));
DLIB_TEST_MSG(std::abs(rs.min()-1) < 1e-6, std::abs(rs.min()-1));
}
// ----------------------------------------------------------------------------------------