Impelement CutPoints 2 with points of view

This commit is contained in:
2022-11-27 23:10:56 +01:00
parent 762d01741c
commit 3333adc395
7 changed files with 59 additions and 21 deletions

View File

@@ -10,9 +10,13 @@ setup(
ext_modules=[
Extension(
name="cppfimdlp",
sources=["fimdlp/cfimdlp.pyx", "fimdlp/CPPFImdlp.cpp"],
sources=[
"fimdlp/cfimdlp.pyx",
"fimdlp/CPPFImdlp.cpp",
],
language="c++",
include_dirs=["fimdlp"],
extra_compile_args=["-std=c++20"],
),
]
)