FEAT 3
Finite Element Analysis Toolbox
Loading...
Searching...
No Matches
dense_vector-eickt.cpp
1// FEAT3: Finite Element Analysis Toolbox, Version 3
2// Copyright (C) 2010 by Stefan Turek & the FEAT group
3// FEAT3 is released under the GNU General Public License version 3,
4// see the file 'copyright.txt' in the top level directory for details.
5
6// includes, FEAT
8#include <kernel/lafem/dense_vector.hpp>
9
10namespace FEAT
11{
12 namespace LAFEM
13 {
14 template class DenseVector<float, std::uint32_t>;
15 template class DenseVector<double, std::uint32_t>;
16 template class DenseVector<float, std::uint64_t>;
17 template class DenseVector<double, std::uint64_t>;
18 }
19}
FEAT Kernel base header.
FEAT namespace.
Definition: adjactor.hpp:12