MUQ  0.4.3
Module.cpp
Go to the documentation of this file.
1 #include <pybind11/pybind11.h>
2 #include <pybind11/stl.h>
3 #include <pybind11/eigen.h>
4 
5 #include "AllClassWrappers.h"
6 
8 namespace py = pybind11;
9 
10 PYBIND11_MODULE(pymuqSamplingAlgorithms, m) {
11 
12  KernelWrapper(m);
13  ProposalWrapper(m);
14  SampleWrapper(m);
15  MCMCWrapper(m);
16  ProblemWrapper(m);
17 }
PYBIND11_MODULE(pymuqApproximation, m)
Definition: Module.cpp:10
void KernelWrapper(pybind11::module &m)
void ProposalWrapper(pybind11::module &m)
void MCMCWrapper(pybind11::module &m)
void SampleWrapper(pybind11::module &m)
void ProblemWrapper(pybind11::module &m)