//Copyright (c) 2008-2016 Emil Dotchevski and Reverge Studios, Inc. //Distributed under the Boost Software License, Version 1.0. (See accompanying //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include #include "test_qvm_matrix.hpp" namespace { template void test() { using namespace boost::qvm; test_qvm::matrix m=identity_mat(); for( int i=0; i!=Dim; ++i ) for( int j=0; j!=Dim; ++j ) BOOST_TEST(m.a[i][j]==float(i==j)); test_qvm::matrix n(42,1); set_identity(n); for( int i=0; i!=Dim; ++i ) for( int j=0; j!=Dim; ++j ) BOOST_TEST(n.a[i][j]==float(i==j)); } } int main() { test<2>(); test<3>(); test<4>(); test<5>(); return boost::report_errors(); }