Morpheus 1.0.0
Dynamic matrix type and algorithms for sparse matrices
Loading...
Searching...
No Matches
Morpheus_Fwd_DenseVector.hpp
1
24#ifndef MORPHEUS_FWD_DENSEVECTOR_HPP
25#define MORPHEUS_FWD_DENSEVECTOR_HPP
26
27namespace Morpheus {
28/* Forward declaration */
29template <class ValueType, class... Properties>
30class DenseVector;
31
32/* Alias type to match std::vector */
33template <class ValueType, class... Properties>
34using vector = DenseVector<ValueType, Properties...>;
35} // namespace Morpheus
36
37#endif // MORPHEUS_FWD_DENSEVECTOR_HPP
Generic Morpheus interfaces.
Definition: dummy.cpp:24