KIDS  ver-0.0.1
KIDS : Kernel Integrated Dynamics Simulator
Loading...
Searching...
No Matches
libpykids_v2.cpp
Go to the documentation of this file.
1#include <pybind11/complex.h>
2#include <pybind11/eigen.h>
3#include <pybind11/embed.h>
4#include <pybind11/numpy.h>
5#include <pybind11/pybind11.h>
6#include <pybind11/stl.h>
7
8#include "kids/DataSet.h"
9#include "kids/Kernel.h"
10#include "kids/ModelFactory.h"
11#include "kids/Param.h"
12#include "kids/SolverFactory.h"
13
14namespace py = pybind11;
15using namespace PROJECT_NS;
16
17PYBIND11_MODULE(libpykids_v2, m) {
18 // clang-format off
19#include "kids_phys.cc"
20#include "kids_param.cc"
21#include "kids_dataset.cc"
22#include "kids_kernel.cc"
23 // clang-format on
24}
Declaration of the DataSet class and related classes.
this file provide Kernel class
Provide struct and interfaces for input parameters.
PYBIND11_MODULE(libpykids_v2, m)
< http://warp.povusers.org/FunctionParser/fparser.html
Definition Context.h:39