Skip to content

Commit f039cd5

Browse files
authored
Merge pull request #314 from wxmerkt/topic/test-new-findboost
Test jrl-umi3218/jrl-cmakemodules#547
2 parents db4b5bb + 83b16fa commit f039cd5

File tree

4 files changed

+2
-8
lines changed

4 files changed

+2
-8
lines changed

cmake

unittest/python/test_LDLT.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import eigenpy
2-
32
import numpy as np
4-
import numpy.linalg as la
53

64
dim = 100
75
A = np.random.rand(dim, dim)

unittest/python/test_MINRES.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import eigenpy
2-
32
import numpy as np
4-
import numpy.linalg as la
53

64
dim = 100
75
A = np.eye(dim)

unittest/python/test_eigen_solver.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1+
import numpy as np
12
import eigenpy
23

34
eigenpy.switchToNumpyArray()
45

5-
import numpy as np
6-
import numpy.linalg as la
7-
86
dim = 100
97
A = np.random.rand(dim, dim)
108

0 commit comments

Comments
 (0)