pairinteraction
A Rydberg Interaction Calculator
bindings_info.cpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2024 Pairinteraction Developers
2// SPDX-License-Identifier: LGPL-3.0-or-later
3
4#include "./Info.py.hpp"
5
6#include <nanobind/nanobind.h>
7
8namespace nb = nanobind;
9
10NB_MODULE(_info, m) // NOLINT
11{
12 nb::set_leak_warnings(false);
13 bind_info(m);
14}
void bind_info(nb::module_ &m)
Definition: Info.py.cpp:13
NB_MODULE(_info, m)