OpenFPM_pdata  4.1.0
Project that contain the implementation of distributed structures
 
Loading...
Searching...
No Matches
FD_util_include.hpp
1/*
2 * FD_util_unclude.hpp
3 *
4 * Created on: Jun 20, 2017
5 * Author: i-bird
6 */
7
8#ifndef OPENFPM_NUMERICS_SRC_FINITEDIFFERENCE_FD_UTIL_INCLUDE_HPP_
9#define OPENFPM_NUMERICS_SRC_FINITEDIFFERENCE_FD_UTIL_INCLUDE_HPP_
10
11constexpr int CENTRAL = 0;
12constexpr int CENTRAL_B_ONE_SIDE = 1;
13constexpr int FORWARD = 2;
14constexpr int BACKWARD = 3;
15constexpr int CENTRAL_SYM = 4;
16
17
18#endif /* OPENFPM_NUMERICS_SRC_FINITEDIFFERENCE_FD_UTIL_INCLUDE_HPP_ */