/* * Vector.hpp * * Created on: Nov 27, 2015 * Author: i-bird */ #ifndef OPENFPM_NUMERICS_SRC_VECTOR_VECTOR_HPP_ #define OPENFPM_NUMERICS_SRC_VECTOR_VECTOR_HPP_ /* ! \brief Sparse Matrix implementation * * \tparam T Type of the sparse Matrix * \tparam impl implementation * */ template<typename T,typename impl = Eigen::Matrix<T, Eigen::Dynamic, 1> > class Vector { }; #include "Vector_eigen.hpp" #endif /* OPENFPM_NUMERICS_SRC_VECTOR_VECTOR_HPP_ */