mirror of https://github.com/mamba-org/mamba.git
18 lines
289 B
C++
18 lines
289 B
C++
/*
|
|
<%
|
|
cfg['compiler_args'] = ['-std=c++17', '-march=native']
|
|
cfg['libraries'] = ['solv']
|
|
setup_pybind11(cfg)
|
|
%>
|
|
*/
|
|
|
|
#include "include/api.cpp"
|
|
|
|
#include <pybind11/pybind11.h>
|
|
#include <pybind11/stl.h>
|
|
|
|
namespace py = pybind11;
|
|
|
|
PYBIND11_MODULE(interface, m) {
|
|
m.def("solve", &solve);
|
|
} |