mgcpp
A C++ Math Library Based on CUDA
include
mgcpp
matrix
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
10
#include <
mgcpp/expressions/dmat_expr.hpp
>
11
#include <
mgcpp/matrix/matrix_base.hpp
>
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
mgcpp
Definition:
adapter_base.hpp:12
dmat_expr.hpp
mgcpp::dense_matrix
Definition:
dense_matrix.hpp:15
matrix_base.hpp
mgcpp::matrix_base
Definition:
matrix_base.hpp:14
Generated by
1.8.13