My Project
Loading...
Searching...
No Matches
GridUtil.hpp
1#ifndef GRIDUTIL_H
2#define GRIDUTIL_H
3
4#include <cmath>
5#include <tuple>
6#include <vector>
7namespace Opm::GridUtil {
8
9
10std::tuple<std::vector<double>,std::vector<double>> convertUnsToCPG(
11 const std::vector<std::array<double, 3>>&,
12 const std::vector<std::array<std::size_t, 8>>&,
13 std::size_t, std::size_t, std::size_t);
14
15
16
17
18// Example for other utilities...
19
20} // namespace GeometryUtils
21
22#endif // GEOMETRY_UTILS_H