mgcpp
A C++ Math Library Based on CUDA
dmat_expr.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_EXPRESSIONS_DENSE_MAT_EXPR_HPP_
8 #define _MGCPP_EXPRESSIONS_DENSE_MAT_EXPR_HPP_
9 
11 #include <mgcpp/matrix/forward.hpp>
12 #include <mgcpp/system/concept.hpp>
13 
14 #include <cstdlib>
15 #include <utility>
16 
17 namespace mgcpp {
18 template <typename Expr>
19 struct dmat_expr : public expression<Expr> {};
20 } // namespace mgcpp
21 
22 #endif
Definition: adapter_base.hpp:12
Definition: expression.hpp:18
Definition: dmat_expr.hpp:19