mgcpp
A C++ Math Library Based on CUDA
dense_matrix.hpp
Go to the documentation of this file.
1 
2 // Copyright RedPortal, mujjingun 2017 - 2018.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file LICENSE or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #ifndef _MGCPP_MATRIX_DENSE_MATRIX_HPP_
8 #define _MGCPP_MATRIX_DENSE_MATRIX_HPP_
9 
12 
13 namespace mgcpp {
14 template <typename DenseMatType, typename Type>
15 class dense_matrix : public matrix_base<DenseMatType, Type> {
16  using result_type = DenseMatType;
17 };
18 } // namespace mgcpp
19 
20 #endif
Definition: adapter_base.hpp:12
Definition: dense_matrix.hpp:15
Definition: matrix_base.hpp:14