Added another matrix test.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402712
This commit is contained in:
Davis King 2008-12-08 01:43:10 +00:00
parent b556ebf587
commit a9a073aae0
1 changed files with 5 additions and 0 deletions

View File

@ -1820,6 +1820,11 @@ namespace
} }
{
DLIB_CASSERT(( uniform_matrix<double>(303,303, 3)*identity_matrix<double>(303) == uniform_matrix<double,303,303>(3) ) , "");
DLIB_CASSERT(( uniform_matrix<double,303,303>(3)*identity_matrix<double,303>() == uniform_matrix<double,303,303>(3) ), "");
}
} }