Skip to content

Commit 70a8ea7

Browse files
committed
updated npe and removed sorting hack
1 parent fe06ff4 commit 70a8ea7

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

cmake/PyiglDownloadExternal.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ endfunction()
3636
function(pyigl_download_numpyeigen)
3737
pyigl_download_project(numpyeigen
3838
GIT_REPOSITORY https://github.com/fwilliams/numpyeigen.git
39-
GIT_TAG 30d12167c5876fab59d169df11780aba84ac96aa
39+
GIT_TAG a58d9f30e4cf77d72fcccc0df6d6ac225d741538
4040
)
4141
endfunction()
4242

tutorial/tutorials.ipynb

-5
Original file line numberDiff line numberDiff line change
@@ -825,10 +825,6 @@
825825
"metadata": {},
826826
"outputs": [],
827827
"source": [
828-
"import igl\n",
829-
"import numpy as np\n",
830-
"import scipy as sp\n",
831-
"\n",
832828
"v, f = igl.read_triangle_mesh(\"data/cheburashka.off\")\n",
833829
"\n",
834830
"## Two fixed points: Left hand, left foot should have values 1 and -1\n",
@@ -843,7 +839,6 @@
843839
"\n",
844840
"## Bi-Laplacian\n",
845841
"Q = L @ (Minv @ L)\n",
846-
"Q.sort_indices()\n",
847842
"\n",
848843
"## Solve with only equality constraints\n",
849844
"Aeq = sp.sparse.csc_matrix((0, 0))\n",

0 commit comments

Comments
 (0)