Loading .gitignore +1 −0 Original line number Diff line number Diff line Loading @@ -3,6 +3,7 @@ build/ bin/ *.cmake src/cython/prrt.c *.pyc CMakeCache.txt CMakeFiles/ Makefile Loading eval.sh 0 → 100644 +2 −0 Original line number Diff line number Diff line #!/usr/bin/env bash sudo python3 eval.py No newline at end of file setup.py +1 −1 Original line number Diff line number Diff line Loading @@ -4,5 +4,5 @@ from Cython.Build import cythonize setup( include_dirs=["./src"], ext_modules = cythonize(["src/cython/prrt.pyx"], gdb_debug=True) ext_modules = cythonize("src/cython/**/*.pyx", gdb_debug=True) ) No newline at end of file tests/__init__.py 0 → 100644 +0 −0 Empty file added. Loading
.gitignore +1 −0 Original line number Diff line number Diff line Loading @@ -3,6 +3,7 @@ build/ bin/ *.cmake src/cython/prrt.c *.pyc CMakeCache.txt CMakeFiles/ Makefile Loading
eval.sh 0 → 100644 +2 −0 Original line number Diff line number Diff line #!/usr/bin/env bash sudo python3 eval.py No newline at end of file
setup.py +1 −1 Original line number Diff line number Diff line Loading @@ -4,5 +4,5 @@ from Cython.Build import cythonize setup( include_dirs=["./src"], ext_modules = cythonize(["src/cython/prrt.pyx"], gdb_debug=True) ext_modules = cythonize("src/cython/**/*.pyx", gdb_debug=True) ) No newline at end of file