LehrFEM++ 1.0.0
A simple Finite Element Library for teaching
Loading...
Searching...
No Matches
check_jacobian.h
1
8
9#ifndef LEHRFEMPP_CHECK_JACOBIAN_H
10#define LEHRFEMPP_CHECK_JACOBIAN_H
11
12#include <lf/geometry/geometry.h>
13
15
23void checkJacobian(const lf::geometry::Geometry &geom,
24 const Eigen::MatrixXd &eval_points, const double &tolerance);
25
26} // namespace lf::geometry::test_utils
27
28#endif // LEHRFEMPP_CHECK_JACOBIAN_H
Defines the Geometry::test_utils module and provides a number of test functions to check geometry obj...
void checkJacobian(const lf::geometry::Geometry &geom, const Eigen::MatrixXd &eval_points, const double &tolerance)
Checks if Jacobian() is implemented correctly by comparing it to the symmetric difference quotient ap...