Skip to content

Commit

Permalink
Formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
jwg4 committed May 3, 2021
1 parent 20980b5 commit 9c60490
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
# define the extension module
src_dir = "src/"
exact_cover_impl = Extension(
'exact_cover_impl',
"exact_cover_impl",
sources=[
src_dir + 'exact_cover.c',
src_dir + 'dlx.c',
src_dir + 'sparse_matrix.c',
src_dir + 'quad_linked_list.c'
src_dir + "exact_cover.c",
src_dir + "dlx.c",
src_dir + "sparse_matrix.c",
src_dir + "quad_linked_list.c",
],
include_dirs=[src_dir, numpy.get_include()]
include_dirs=[src_dir, numpy.get_include()],
)


Expand Down

0 comments on commit 9c60490

Please sign in to comment.