Commit f9b272fe authored by Davis King's avatar Davis King
Browse files

Added message to test so that the next time it fails on Appvetor we can

see what happened.
parent f6ea3397
...@@ -126,7 +126,7 @@ namespace ...@@ -126,7 +126,7 @@ namespace
const double trans_error = max(abs(L*Ltrans - R*Rtrans)); const double trans_error = max(abs(L*Ltrans - R*Rtrans));
dlog << LINFO << "trans_error: "<< trans_error; dlog << LINFO << "trans_error: "<< trans_error;
DLIB_TEST(trans_error < 1e-9); DLIB_TEST_MSG(trans_error < 1e-9, trans_error);
} }
{ {
correlations = cca(mat_to_sparse(L), mat_to_sparse(R), Ltrans, Rtrans, min(m,n), max(n,n2)+6, 4); correlations = cca(mat_to_sparse(L), mat_to_sparse(R), Ltrans, Rtrans, min(m,n), max(n,n2)+6, 4);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment