Skip to content

Commit f734ea9

Browse files
author
Teseo Schneider
committed
small fixes
1 parent cbab259 commit f734ea9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def build_extension(self, ext):
7171

7272
setup(
7373
name="igl",
74-
version="0.3",
74+
version="0.3.1",
7575
author="libigl",
7676
author_email="",
7777
description="libigl Python Bindings",

src/min_quad_with_fixed.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ Examples
5050

5151
npe_function(min_quad_with_fixed)
5252
npe_doc(ds_min_quad_with_fixed)
53-
53+
//TODO missing npe_dense_like
5454
npe_arg(A, sparse_double)
5555
npe_arg(B, dense_double)
5656
npe_arg(known, dense_int, dense_long, dense_longlong)
57-
npe_arg(Y, dense_double)
58-
npe_arg(Aeq, sparse_double)
59-
npe_arg(Beq, dense_double)
57+
npe_arg(Y, npe_matches(B))
58+
npe_arg(Aeq, npe_matches(A))
59+
npe_arg(Beq, npe_matches(B))
6060
npe_arg(is_A_pd, bool)
6161

6262

0 commit comments

Comments
 (0)