ls1-MarDyn
ls1-MarDyn molecular dynamics code
RealVec.h
1/*
2 * RealVec.h
3 *
4 * Created on: 10 Nov 2016
5 * Author: tchipevn
6 */
7
8#ifndef SRC_PARTICLECONTAINER_ADAPTER_VECTORIZATION_REALVEC_H_
9#define SRC_PARTICLECONTAINER_ADAPTER_VECTORIZATION_REALVEC_H_
10
11#include "SIMD_TYPES.h"
12#include "MaskVec.h"
13#include "utils/mardyn_assert.h"
14#include <fstream>
15#include <cmath>
16
17#include "utils/Logger.h"
18
19namespace vcp {
20
21template<typename FloatOrDouble>
22class RealVec {
23}; /* class RealVec */
24
25} /* namespace vcp */
26
27// SPECIALIZATIONS: suggested to view via vimdiff
28#include "RealVecFloat.h"
29#include "RealVecDouble.h"
30
31
32
33#endif /* SRC_PARTICLECONTAINER_ADAPTER_VECTORIZATION_REALVEC_H_ */
Defines the length of the vectors and the corresponding functions.
Definition: RealVec.h:22