eigenpy 3.12.0
Bindings between Numpy and Eigen using Boost.Python
Loading...
Searching...
No Matches
decompositions.hpp
1/*
2 * Copyright 2020 INRIA
3 */
4
5#ifndef __eigenpy_decompositions_decompositions_hpp__
6#define __eigenpy_decompositions_decompositions_hpp__
7
8#include "eigenpy/config.hpp"
9
10namespace eigenpy {
11void EIGENPY_DLLAPI exposeDecompositions();
12
13#ifdef EIGENPY_WITH_CHOLMOD_SUPPORT
14void EIGENPY_DLLAPI exposeCholmod();
15#endif
16
17#ifdef EIGENPY_WITH_ACCELERATE_SUPPORT
18void EIGENPY_DLLAPI exposeAccelerate();
19#endif
20
21} // namespace eigenpy
22
23#endif // define __eigenpy_decompositions_decompositions_hpp__