PolyDiM
C++ library for POLYtopal DIscretization Methods
Loading...
Searching...
No Matches
QuadratureData.hpp
Go to the documentation of this file.
1// _LICENSE_HEADER_
2//
3// Copyright (C) 2019 - 2025.
4// Terms register on the GPL-3.0 license.
5//
6// This file can be redistributed and/or modified under the license terms.
7//
8// See top level LICENSE file for more details.
9//
10// This file can be used citing references in CITATION.cff file.
11
12#ifndef __QuadratureData_H
13#define __QuadratureData_H
14
15#include "Eigen/Eigen"
16
17namespace Gedim
18{
19namespace Quadrature
20{
22{
23 Eigen::MatrixXd Points;
24 Eigen::VectorXd Weights;
25};
26} // namespace Quadrature
27} // namespace Gedim
28
29#endif // __QuadratureData_H
Eigen column vector.
Definition Eigen_Array.hpp:23
Definition Eigen_Array.cpp:22
Definition QuadratureData.hpp:22
Eigen::MatrixXd Points
Definition QuadratureData.hpp:23
Eigen::VectorXd Weights
Definition QuadratureData.hpp:24