// Copyright 2008-2024 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) #ifdef BOOST_QVM_TEST_SINGLE_HEADER # include BOOST_QVM_TEST_SINGLE_HEADER #else # include #endif #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_EQ(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_EQ(n.a[i][j], float(i==j)); } } int main() { test<2>(); test<3>(); test<4>(); test<5>(); return boost::report_errors(); }