// // matrix_dummy.cpp // matrix // // Created by Sam Jaffe on 6/3/18. // #include "matrix.hpp" #include "matrix_helpers.hpp" namespace math { namespace matrix { template class matrix; template class row_reference; template matrix identity(); template matrix diagonal(vector::vector const &); template matrix translation(vector::vector const &); template matrix scalar(vector::vector const &); } }