pairinteraction
A Rydberg Interaction Calculator
Info.py.cpp
Go to the documentation of this file.
1
// SPDX-FileCopyrightText: 2025 Pairinteraction Developers
2
// SPDX-License-Identifier: LGPL-3.0-or-later
3
4
#include "
pairinteraction/Info.hpp
"
5
6
#include "
./Info.py.hpp
"
7
8
#include <nanobind/nanobind.h>
9
10
namespace
nb = nanobind;
11
using namespace
pairinteraction
;
12
13
void
bind_info
(nb::module_ &m) {
14
nb::class_<Info>(m,
"Info"
)
15
.def_ro(
"has_eigen"
, &Info::has_eigen)
16
.def_ro(
"has_lapacke_evd"
, &Info::has_lapacke_evd)
17
.def_ro(
"has_lapacke_evr"
, &Info::has_lapacke_evr)
18
.def_ro(
"has_feast"
, &Info::has_feast);
19
}
Info.hpp
bind_info
void bind_info(nb::module_ &m)
Definition:
Info.py.cpp:13
Info.py.hpp
pairinteraction
Definition:
Basis.hpp:18
src
cpp
bindings
Info.py.cpp
Generated on Sun May 4 2025 09:11:20 for pairinteraction by
1.9.4