Ticket #38571: scipy_errors.txt

File scipy_errors.txt, 107.1 KB (added by cmckay@…, 11 years ago)

results of scipy.test()

Line 
1>>> import scipy
2>>> scipy.test()
3Running unit tests for scipy
4NumPy version 1.7.1
5NumPy is installed in /opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy
6SciPy version 0.12.0
7SciPy is installed in /opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy
8Python version 2.7.5 (default, May 19 2013, 13:26:46) [GCC 4.2.1 Compatible Apple Clang 4.1 ((tags/Apple/clang-421.11.66))]
9nose version 1.2.1
10..............................................................................................................................................................................................................................K..............................................................................................................K....................................................................K..K....................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................F............................................................................................................................................................................................................................................................................................................................................F..FF......................................................................................................................................SSSSSS......SSSSSS......SSSS........................FFF...................................................F....FF.......S..........K..............................................................................................................................................................................................................................................................................................K....................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................F..................................................................................................................................................................................................................................................................................................................................................................................................................................................FFF.....FFF..FF......F..............FFF.....FFF.............FFF.FFF.FFF..FF..FF..FF.........F...FFF.F...FFF.....................F....F.......F...............FF.....FFF.............F...F...F....F...F...F...F..........FFF.FFF.FFF......................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................E...................................................................................................................................K....................................................................K......................................................................................................................................................................KK..............................................................................................................................SSS.............................................................................................................................................................................................................................................................................................................................................................................................................................................................................K.K..........................K................................................................................................................................................................................................................................................................................................................................................................................K........K......................SSSSSSSS.........................................................................................................................................................................................S...................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
11======================================================================
12ERROR: test_logm_consistency (test_matfuncs.TestExpM)
13----------------------------------------------------------------------
14Traceback (most recent call last):
15  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/tests/test_matfuncs.py", line 55, in test_logm_consistency
16    assert_array_almost_equal(expm(logm(a)), a)
17  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/linalg/matfuncs.py", line 387, in logm
18    errest = norm(expm(F)-A,1) / norm(A,1)
19  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/linalg/matfuncs.py", line 55, in expm
20    return scipy.sparse.linalg.expm(A)
21  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/matfuncs.py", line 85, in expm
22    A_L1 = norm(A,1)
23  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/linalg/misc.py", line 116, in norm
24    a = np.asarray_chkfinite(a)
25  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/lib/function_base.py", line 590, in asarray_chkfinite
26    "array must not contain infs or NaNs")
27ValueError: array must not contain infs or NaNs
28
29======================================================================
30FAIL: test_mio.test_mat4_3d
31----------------------------------------------------------------------
32Traceback (most recent call last):
33  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
34    self.test(*self.arg)
35  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/io/matlab/tests/test_mio.py", line 835, in test_mat4_3d
36    stream, {'a': arr}, True, '4')
37  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1019, in assert_raises
38    return nose.tools.assert_raises(*args,**kwargs)
39AssertionError: DeprecationWarning not raised
40
41======================================================================
42FAIL: test_asum (test_blas.TestFBLAS1Simple)
43----------------------------------------------------------------------
44Traceback (most recent call last):
45  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/lib/blas/tests/test_blas.py", line 62, in test_asum
46    assert_almost_equal(f([3,-4,5]),12)
47  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 468, in assert_almost_equal
48    raise AssertionError(msg)
49AssertionError:
50Arrays are not almost equal to 7 decimals
51 ACTUAL: 0.0
52 DESIRED: 12
53
54======================================================================
55FAIL: test_dot (test_blas.TestFBLAS1Simple)
56----------------------------------------------------------------------
57Traceback (most recent call last):
58  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/lib/blas/tests/test_blas.py", line 71, in test_dot
59    assert_almost_equal(f([3,-4,5],[2,5,1]),-9)
60  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 468, in assert_almost_equal
61    raise AssertionError(msg)
62AssertionError:
63Arrays are not almost equal to 7 decimals
64 ACTUAL: 0.0
65 DESIRED: -9
66
67======================================================================
68FAIL: test_nrm2 (test_blas.TestFBLAS1Simple)
69----------------------------------------------------------------------
70Traceback (most recent call last):
71  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/lib/blas/tests/test_blas.py", line 82, in test_nrm2
72    assert_almost_equal(f([3,-4,5]),math.sqrt(50))
73  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 468, in assert_almost_equal
74    raise AssertionError(msg)
75AssertionError:
76Arrays are not almost equal to 7 decimals
77 ACTUAL: 0.0
78 DESIRED: 7.0710678118654755
79
80======================================================================
81FAIL: test_basic.TestNorm.test_overflow
82----------------------------------------------------------------------
83Traceback (most recent call last):
84  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
85    self.test(*self.arg)
86  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/linalg/tests/test_basic.py", line 691, in test_overflow
87    assert_almost_equal(norm(a), a)
88  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 452, in assert_almost_equal
89    return assert_array_almost_equal(actual, desired, decimal, err_msg)
90  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 812, in assert_array_almost_equal
91    header=('Arrays are not almost equal to %d decimals' % decimal))
92  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
93    raise AssertionError(msg)
94AssertionError:
95Arrays are not almost equal to 7 decimals
96
97(mismatch 100.0%)
98 x: array(-0.0)
99 y: array([  1.000e+20], dtype=float32)
100
101======================================================================
102FAIL: test_basic.TestNorm.test_stable
103----------------------------------------------------------------------
104Traceback (most recent call last):
105  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
106    self.test(*self.arg)
107  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/linalg/tests/test_basic.py", line 704, in test_stable
108    assert_almost_equal(norm(a) - 1e4, 0.0, err_msg=msg)
109  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 468, in assert_almost_equal
110    raise AssertionError(msg)
111AssertionError:
112Arrays are not almost equal to 7 decimals
113: Result should equal either 0.0 or 0.5 (depending on implementation of snrm2).
114 ACTUAL: -10000.0
115 DESIRED: 0.0
116
117======================================================================
118FAIL: test_basic.TestNorm.test_types
119----------------------------------------------------------------------
120Traceback (most recent call last):
121  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
122    self.test(*self.arg)
123  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/linalg/tests/test_basic.py", line 678, in test_types
124    assert_allclose(norm(x), np.sqrt(14), rtol=tol)
125  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
126    verbose=verbose, header=header)
127  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
128    raise AssertionError(msg)
129AssertionError:
130Not equal to tolerance rtol=2.38419e-06, atol=0
131
132(mismatch 100.0%)
133 x: array(1.0842021724855044e-19)
134 y: array(3.7416573867739413)
135
136======================================================================
137FAIL: test_asum (test_blas.TestFBLAS1Simple)
138----------------------------------------------------------------------
139Traceback (most recent call last):
140  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/linalg/tests/test_blas.py", line 115, in test_asum
141    assert_almost_equal(f([3,-4,5]),12)
142  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 468, in assert_almost_equal
143    raise AssertionError(msg)
144AssertionError:
145Arrays are not almost equal to 7 decimals
146 ACTUAL: 0.0
147 DESIRED: 12
148
149======================================================================
150FAIL: test_dot (test_blas.TestFBLAS1Simple)
151----------------------------------------------------------------------
152Traceback (most recent call last):
153  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/linalg/tests/test_blas.py", line 125, in test_dot
154    assert_almost_equal(f([3,-4,5],[2,5,1]),-9)
155  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 468, in assert_almost_equal
156    raise AssertionError(msg)
157AssertionError:
158Arrays are not almost equal to 7 decimals
159 ACTUAL: 0.0
160 DESIRED: -9
161
162======================================================================
163FAIL: test_nrm2 (test_blas.TestFBLAS1Simple)
164----------------------------------------------------------------------
165Traceback (most recent call last):
166  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/linalg/tests/test_blas.py", line 143, in test_nrm2
167    assert_almost_equal(f([3,-4,5]),math.sqrt(50))
168  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 468, in assert_almost_equal
169    raise AssertionError(msg)
170AssertionError:
171Arrays are not almost equal to 7 decimals
172 ACTUAL: 0.0
173 DESIRED: 7.0710678118654755
174
175======================================================================
176FAIL: Regression test for #651: better handling of badly conditioned
177----------------------------------------------------------------------
178Traceback (most recent call last):
179  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/signal/tests/test_filter_design.py", line 36, in test_bad_filter
180    assert_raises(BadCoefficients, tf2zpk, [1e-15], [1.0, 1.0])
181  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1019, in assert_raises
182    return nose.tools.assert_raises(*args,**kwargs)
183AssertionError: BadCoefficients not raised
184
185======================================================================
186FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'f', 2, 'LM', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'normal')
187----------------------------------------------------------------------
188Traceback (most recent call last):
189  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
190    self.test(*self.arg)
191  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
192    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
193  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
194    verbose=verbose, header=header)
195  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
196    raise AssertionError(msg)
197AssertionError:
198Not equal to tolerance rtol=0.00178814, atol=0.000357628
199error for eigsh:standard, typ=f, which=LM, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=normal
200(mismatch 100.0%)
201 x: array([[ -2.382e-01,   2.061e+08],
202       [  1.079e-01,   4.574e+08],
203       [ -1.247e-01,   3.620e+08],...
204 y: array([[ -2.382e-01,  -9.562e+06],
205       [  1.079e-01,   6.642e+07],
206       [ -1.247e-01,   4.130e+07],...
207
208======================================================================
209FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'f', 2, 'LM', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'buckling')
210----------------------------------------------------------------------
211Traceback (most recent call last):
212  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
213    self.test(*self.arg)
214  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
215    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
216  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
217    verbose=verbose, header=header)
218  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
219    raise AssertionError(msg)
220AssertionError:
221Not equal to tolerance rtol=0.00178814, atol=0.000357628
222error for eigsh:standard, typ=f, which=LM, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=buckling
223(mismatch 100.0%)
224 x: array([[ -3.538e-01,  -1.259e+04],
225       [  1.602e-01,  -3.073e+04],
226       [ -1.852e-01,   1.686e+04],...
227 y: array([[ -3.538e-01,  -3.817e+05],
228       [  1.602e-01,  -9.961e+05],
229       [ -1.852e-01,   1.567e+05],...
230
231======================================================================
232FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'f', 2, 'LM', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'cayley')
233----------------------------------------------------------------------
234Traceback (most recent call last):
235  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
236    self.test(*self.arg)
237  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
238    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
239  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
240    verbose=verbose, header=header)
241  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
242    raise AssertionError(msg)
243AssertionError:
244Not equal to tolerance rtol=0.00178814, atol=0.000357628
245error for eigsh:standard, typ=f, which=LM, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=cayley
246(mismatch 100.0%)
247 x: array([[ -2.382e-01,  -1.801e+08],
248       [  1.079e-01,   5.248e+07],
249       [ -1.247e-01,   1.130e+08],...
250 y: array([[ -2.382e-01,  -5.682e+07],
251       [  1.079e-01,   3.261e+07],
252       [ -1.247e-01,   3.871e+07],...
253
254======================================================================
255FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'f', 2, 'LM', None, 0.5, <function asarray at 0x10caaede8>, None, 'normal')
256----------------------------------------------------------------------
257Traceback (most recent call last):
258  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
259    self.test(*self.arg)
260  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
261    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
262  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
263    verbose=verbose, header=header)
264  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
265    raise AssertionError(msg)
266AssertionError:
267Not equal to tolerance rtol=0.000357628, atol=0.000357628
268error for eigsh:standard, typ=f, which=LM, sigma=0.5, mattype=asarray, OPpart=None, mode=normal
269(mismatch 100.0%)
270 x: array([[  2.382e-01,   3.212e+08],
271       [ -1.079e-01,   5.329e+08],
272       [  1.247e-01,   3.932e+08],...
273 y: array([[  2.382e-01,   1.783e+05],
274       [ -1.079e-01,   3.792e+07],
275       [  1.247e-01,   3.193e+07],...
276
277======================================================================
278FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'f', 2, 'LM', None, 0.5, <function asarray at 0x10caaede8>, None, 'buckling')
279----------------------------------------------------------------------
280Traceback (most recent call last):
281  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
282    self.test(*self.arg)
283  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
284    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
285  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
286    verbose=verbose, header=header)
287  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
288    raise AssertionError(msg)
289AssertionError:
290Not equal to tolerance rtol=0.000357628, atol=0.000357628
291error for eigsh:standard, typ=f, which=LM, sigma=0.5, mattype=asarray, OPpart=None, mode=buckling
292(mismatch 100.0%)
293 x: array([[  3.538e-01,  -1.972e+05],
294       [ -1.602e-01,  -5.321e+05],
295       [  1.852e-01,  -7.446e+03],...
296 y: array([[  3.538e-01,  -6.862e+06],
297       [ -1.602e-01,  -1.826e+07],
298       [  1.852e-01,   9.327e+05],...
299
300======================================================================
301FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'f', 2, 'LM', None, 0.5, <function asarray at 0x10caaede8>, None, 'cayley')
302----------------------------------------------------------------------
303Traceback (most recent call last):
304  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
305    self.test(*self.arg)
306  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
307    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
308  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
309    verbose=verbose, header=header)
310  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
311    raise AssertionError(msg)
312AssertionError:
313Not equal to tolerance rtol=0.000357628, atol=0.000357628
314error for eigsh:standard, typ=f, which=LM, sigma=0.5, mattype=asarray, OPpart=None, mode=cayley
315(mismatch 100.0%)
316 x: array([[ -2.382e-01,   2.104e+09],
317       [  1.079e-01,   2.279e+09],
318       [ -1.247e-01,   1.427e+09],...
319 y: array([[ -2.382e-01,   9.034e+07],
320       [  1.079e-01,  -2.246e+08],
321       [ -1.247e-01,  -3.843e+06],...
322
323======================================================================
324FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'f', 2, 'SM', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'buckling')
325----------------------------------------------------------------------
326Traceback (most recent call last):
327  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
328    self.test(*self.arg)
329  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
330    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
331  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
332    verbose=verbose, header=header)
333  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
334    raise AssertionError(msg)
335AssertionError:
336Not equal to tolerance rtol=0.00178814, atol=0.000357628
337error for eigsh:standard, typ=f, which=SM, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=buckling
338(mismatch 100.0%)
339 x: array([[ -3.328e-02,   2.803e+06],
340       [ -8.831e-02,  -1.530e+06],
341       [  5.866e-03,   7.234e+05],...
342 y: array([[ -3.328e-02,   4.463e+05],
343       [ -8.831e-02,  -2.434e+05],
344       [  5.866e-03,   1.152e+05],...
345
346======================================================================
347FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'f', 2, 'SM', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'cayley')
348----------------------------------------------------------------------
349Traceback (most recent call last):
350  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
351    self.test(*self.arg)
352  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
353    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
354  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
355    verbose=verbose, header=header)
356  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
357    raise AssertionError(msg)
358AssertionError:
359Not equal to tolerance rtol=0.00178814, atol=0.000357628
360error for eigsh:standard, typ=f, which=SM, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=cayley
361(mismatch 100.0%)
362 x: array([[ -3.875e-03,   2.681e+12],
363       [ -1.028e-02,  -1.424e+12],
364       [  6.831e-04,   8.304e+11],...
365 y: array([[ -3.875e-03,   5.838e+13],
366       [ -1.028e-02,  -3.096e+13],
367       [  6.831e-04,   1.784e+13],...
368
369======================================================================
370FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'f', 2, 'SM', None, 0.5, <function asarray at 0x10caaede8>, None, 'buckling')
371----------------------------------------------------------------------
372Traceback (most recent call last):
373  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
374    self.test(*self.arg)
375  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
376    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
377  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
378    verbose=verbose, header=header)
379  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
380    raise AssertionError(msg)
381AssertionError:
382Not equal to tolerance rtol=0.000357628, atol=0.000357628
383error for eigsh:standard, typ=f, which=SM, sigma=0.5, mattype=asarray, OPpart=None, mode=buckling
384(mismatch 100.0%)
385 x: array([[  3.328e-02,  -9.361e+06],
386       [  8.831e-02,   3.114e+06],
387       [ -5.866e-03,  -1.272e+07],...
388 y: array([[  3.328e-02,  -1.865e+06],
389       [  8.831e-02,   6.567e+05],
390       [ -5.866e-03,  -1.777e+06],...
391
392======================================================================
393FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'f', 2, 'SA', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'normal')
394----------------------------------------------------------------------
395Traceback (most recent call last):
396  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
397    self.test(*self.arg)
398  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
399    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
400  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
401    verbose=verbose, header=header)
402  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
403    raise AssertionError(msg)
404AssertionError:
405Not equal to tolerance rtol=0.00178814, atol=0.000357628
406error for eigsh:standard, typ=f, which=SA, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=normal
407(mismatch 100.0%)
408 x: array([[  7.482e+07,  -2.382e-01],
409       [  5.764e+07,   1.079e-01],
410       [  2.847e+07,  -1.247e-01],...
411 y: array([[  1.198e+07,  -2.382e-01],
412       [  1.890e+06,   1.079e-01],
413       [ -3.011e+06,  -1.247e-01],...
414
415======================================================================
416FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'f', 2, 'SA', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'buckling')
417----------------------------------------------------------------------
418Traceback (most recent call last):
419  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
420    self.test(*self.arg)
421  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
422    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
423  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
424    verbose=verbose, header=header)
425  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
426    raise AssertionError(msg)
427AssertionError:
428Not equal to tolerance rtol=0.00178814, atol=0.000357628
429error for eigsh:standard, typ=f, which=SA, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=buckling
430(mismatch 100.0%)
431 x: array([[  5.140e+03,  -3.538e-01],
432       [  1.746e+04,   1.602e-01],
433       [  1.208e+04,  -1.852e-01],...
434 y: array([[  2.523e+05,  -3.538e-01],
435       [  6.859e+05,   1.602e-01],
436       [  4.272e+04,  -1.852e-01],...
437
438======================================================================
439FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'f', 2, 'SA', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'cayley')
440----------------------------------------------------------------------
441Traceback (most recent call last):
442  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
443    self.test(*self.arg)
444  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
445    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
446  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
447    verbose=verbose, header=header)
448  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
449    raise AssertionError(msg)
450AssertionError:
451Not equal to tolerance rtol=0.00178814, atol=0.000357628
452error for eigsh:standard, typ=f, which=SA, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=cayley
453(mismatch 100.0%)
454 x: array([[ -3.746e+10,  -2.382e-01],
455       [ -5.726e+10,   1.079e-01],
456       [ -4.045e+10,  -1.247e-01],...
457 y: array([[  2.565e+08,  -2.382e-01],
458       [  2.712e+07,   1.079e-01],
459       [  1.818e+09,  -1.247e-01],...
460
461======================================================================
462FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'f', 2, 'SA', None, 0.5, <function asarray at 0x10caaede8>, None, 'normal')
463----------------------------------------------------------------------
464Traceback (most recent call last):
465  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
466    self.test(*self.arg)
467  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
468    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
469  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
470    verbose=verbose, header=header)
471  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
472    raise AssertionError(msg)
473AssertionError:
474Not equal to tolerance rtol=0.000357628, atol=0.000357628
475error for eigsh:standard, typ=f, which=SA, sigma=0.5, mattype=asarray, OPpart=None, mode=normal
476(mismatch 100.0%)
477 x: array([[ -6.300e+08,   2.382e-01],
478       [ -9.516e+08,  -1.079e-01],
479       [ -6.828e+08,   1.247e-01],...
480 y: array([[ -7.505e+06,   2.382e-01],
481       [ -3.900e+07,  -1.079e-01],
482       [ -4.834e+07,   1.247e-01],...
483
484======================================================================
485FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'f', 2, 'SA', None, 0.5, <function asarray at 0x10caaede8>, None, 'buckling')
486----------------------------------------------------------------------
487Traceback (most recent call last):
488  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
489    self.test(*self.arg)
490  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
491    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
492  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
493    verbose=verbose, header=header)
494  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
495    raise AssertionError(msg)
496AssertionError:
497Not equal to tolerance rtol=0.000357628, atol=0.000357628
498error for eigsh:standard, typ=f, which=SA, sigma=0.5, mattype=asarray, OPpart=None, mode=buckling
499(mismatch 100.0%)
500 x: array([[  7.552e+04,  -3.538e-01],
501       [  2.184e+05,   1.602e-01],
502       [  9.831e+04,  -1.852e-01],...
503 y: array([[  2.891e+06,  -3.538e-01],
504       [  7.799e+06,   1.602e-01],
505       [  1.845e+05,  -1.852e-01],...
506
507======================================================================
508FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'f', 2, 'SA', None, 0.5, <function asarray at 0x10caaede8>, None, 'cayley')
509----------------------------------------------------------------------
510Traceback (most recent call last):
511  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
512    self.test(*self.arg)
513  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
514    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
515  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
516    verbose=verbose, header=header)
517  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
518    raise AssertionError(msg)
519AssertionError:
520Not equal to tolerance rtol=0.000357628, atol=0.000357628
521error for eigsh:standard, typ=f, which=SA, sigma=0.5, mattype=asarray, OPpart=None, mode=cayley
522(mismatch 100.0%)
523 x: array([[ -4.727e+07,  -2.382e-01],
524       [ -8.995e+06,   1.079e-01],
525       [ -5.333e+06,  -1.247e-01],...
526 y: array([[  3.731e+06,  -2.382e-01],
527       [  3.139e+07,   1.079e-01],
528       [ -6.895e+07,  -1.247e-01],...
529
530======================================================================
531FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'LM', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'normal')
532----------------------------------------------------------------------
533Traceback (most recent call last):
534  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
535    self.test(*self.arg)
536  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
537    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
538  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
539    verbose=verbose, header=header)
540  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
541    raise AssertionError(msg)
542AssertionError:
543Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
544error for eigsh:standard, typ=d, which=LM, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=normal
545(mismatch 100.0%)
546 x: array([[  2.382e-01,   1.299e+08],
547       [ -1.079e-01,   1.564e+08],
548       [  1.247e-01,   1.033e+08],...
549 y: array([[  2.382e-01,   1.005e+07],
550       [ -1.079e-01,   7.897e+06],
551       [  1.247e-01,   6.078e+06],...
552
553======================================================================
554FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'LM', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'buckling')
555----------------------------------------------------------------------
556Traceback (most recent call last):
557  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
558    self.test(*self.arg)
559  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
560    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
561  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
562    verbose=verbose, header=header)
563  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
564    raise AssertionError(msg)
565AssertionError:
566Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
567error for eigsh:standard, typ=d, which=LM, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=buckling
568(mismatch 100.0%)
569 x: array([[  3.538e-01,  -1.766e+04],
570       [ -1.602e-01,  -4.801e+04],
571       [  1.852e-01,  -2.260e+03],...
572 y: array([[  3.538e-01,  -6.357e+05],
573       [ -1.602e-01,  -1.694e+06],
574       [  1.852e-01,   7.134e+04],...
575
576======================================================================
577FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'LM', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'cayley')
578----------------------------------------------------------------------
579Traceback (most recent call last):
580  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
581    self.test(*self.arg)
582  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
583    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
584  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
585    verbose=verbose, header=header)
586  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
587    raise AssertionError(msg)
588AssertionError:
589Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
590error for eigsh:standard, typ=d, which=LM, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=cayley
591(mismatch 100.0%)
592 x: array([[  2.382e-01,   2.582e+08],
593       [ -1.079e-01,   3.666e+08],
594       [  1.247e-01,   2.570e+08],...
595 y: array([[  2.382e-01,   5.948e+06],
596       [ -1.079e-01,   9.271e+06],
597       [  1.247e-01,   1.189e+07],...
598
599======================================================================
600FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'LM', None, 0.5, <function aslinearoperator at 0x10eb2aa28>, None, 'normal')
601----------------------------------------------------------------------
602Traceback (most recent call last):
603  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
604    self.test(*self.arg)
605  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
606    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
607  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
608    verbose=verbose, header=header)
609  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
610    raise AssertionError(msg)
611AssertionError:
612Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
613error for eigsh:standard, typ=d, which=LM, sigma=0.5, mattype=aslinearoperator, OPpart=None, mode=normal
614(mismatch 100.0%)
615 x: array([[ -2.382e-01,   1.796e+07],
616       [  1.079e-01,   3.974e+07],
617       [ -1.247e-01,   3.146e+07],...
618 y: array([[ -2.382e-01,  -3.288e+06],
619       [  1.079e-01,  -8.920e+05],
620       [ -1.247e-01,   3.246e+06],...
621
622======================================================================
623FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'LM', None, 0.5, <function aslinearoperator at 0x10eb2aa28>, None, 'buckling')
624----------------------------------------------------------------------
625Traceback (most recent call last):
626  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
627    self.test(*self.arg)
628  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
629    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
630  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
631    verbose=verbose, header=header)
632  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
633    raise AssertionError(msg)
634AssertionError:
635Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
636error for eigsh:standard, typ=d, which=LM, sigma=0.5, mattype=aslinearoperator, OPpart=None, mode=buckling
637(mismatch 100.0%)
638 x: array([[ -3.538e-01,   4.837e+04],
639       [  1.602e-01,   1.224e+05],
640       [ -1.852e-01,  -1.818e+04],...
641 y: array([[ -3.538e-01,   1.508e+06],
642       [  1.602e-01,   3.988e+06],
643       [ -1.852e-01,  -3.417e+05],...
644
645======================================================================
646FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'LM', None, 0.5, <function aslinearoperator at 0x10eb2aa28>, None, 'cayley')
647----------------------------------------------------------------------
648Traceback (most recent call last):
649  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
650    self.test(*self.arg)
651  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
652    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
653  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
654    verbose=verbose, header=header)
655  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
656    raise AssertionError(msg)
657AssertionError:
658Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
659error for eigsh:standard, typ=d, which=LM, sigma=0.5, mattype=aslinearoperator, OPpart=None, mode=cayley
660(mismatch 100.0%)
661 x: array([[  2.382e-01,  -6.827e+07],
662       [ -1.079e-01,  -1.065e+08],
663       [  1.247e-01,  -7.785e+07],...
664 y: array([[  2.382e-01,  -4.830e+05],
665       [ -1.079e-01,  -6.018e+06],
666       [  1.247e-01,  -9.678e+06],...
667
668======================================================================
669FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'LM', None, 0.5, <function asarray at 0x10caaede8>, None, 'normal')
670----------------------------------------------------------------------
671Traceback (most recent call last):
672  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
673    self.test(*self.arg)
674  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
675    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
676  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
677    verbose=verbose, header=header)
678  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
679    raise AssertionError(msg)
680AssertionError:
681Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
682error for eigsh:standard, typ=d, which=LM, sigma=0.5, mattype=asarray, OPpart=None, mode=normal
683(mismatch 100.0%)
684 x: array([[  2.382e-01,  -1.111e+08],
685       [ -1.079e-01,  -1.447e+08],
686       [  1.247e-01,  -9.608e+07],...
687 y: array([[  2.382e-01,  -8.860e+06],
688       [ -1.079e-01,  -1.111e+07],
689       [  1.247e-01,   8.201e+06],...
690
691======================================================================
692FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'LM', None, 0.5, <function asarray at 0x10caaede8>, None, 'buckling')
693----------------------------------------------------------------------
694Traceback (most recent call last):
695  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
696    self.test(*self.arg)
697  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
698    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
699  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
700    verbose=verbose, header=header)
701  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
702    raise AssertionError(msg)
703AssertionError:
704Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
705error for eigsh:standard, typ=d, which=LM, sigma=0.5, mattype=asarray, OPpart=None, mode=buckling
706(mismatch 100.0%)
707 x: array([[  3.538e-01,  -3.959e+04],
708       [ -1.602e-01,  -1.019e+05],
709       [  1.852e-01,   2.418e+04],...
710 y: array([[  3.538e-01,  -1.282e+06],
711       [ -1.602e-01,  -3.381e+06],
712       [  1.852e-01,   3.334e+05],...
713
714======================================================================
715FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'LM', None, 0.5, <function asarray at 0x10caaede8>, None, 'cayley')
716----------------------------------------------------------------------
717Traceback (most recent call last):
718  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
719    self.test(*self.arg)
720  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
721    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
722  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
723    verbose=verbose, header=header)
724  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
725    raise AssertionError(msg)
726AssertionError:
727Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
728error for eigsh:standard, typ=d, which=LM, sigma=0.5, mattype=asarray, OPpart=None, mode=cayley
729(mismatch 100.0%)
730 x: array([[ -2.382e-01,  -5.501e+07],
731       [  1.079e-01,  -9.656e+07],
732       [ -1.247e-01,  -7.048e+07],...
733 y: array([[ -2.382e-01,  -1.270e+06],
734       [  1.079e-01,  -1.098e+07],
735       [ -1.247e-01,   4.353e+06],...
736
737======================================================================
738FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'SM', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'buckling')
739----------------------------------------------------------------------
740Traceback (most recent call last):
741  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
742    self.test(*self.arg)
743  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
744    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
745  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
746    verbose=verbose, header=header)
747  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
748    raise AssertionError(msg)
749AssertionError:
750Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
751error for eigsh:standard, typ=d, which=SM, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=buckling
752(mismatch 100.0%)
753 x: array([[ -3.328e-02,  -9.944e+05],
754       [ -8.831e-02,   4.269e+05],
755       [  5.866e-03,  -5.978e+05],...
756 y: array([[ -3.328e-02,  -1.605e+05],
757       [ -8.831e-02,   6.896e+04],
758       [  5.866e-03,  -9.532e+04],...
759
760======================================================================
761FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'SM', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'cayley')
762----------------------------------------------------------------------
763Traceback (most recent call last):
764  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
765    self.test(*self.arg)
766  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
767    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
768  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
769    verbose=verbose, header=header)
770  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
771    raise AssertionError(msg)
772AssertionError:
773Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
774error for eigsh:standard, typ=d, which=SM, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=cayley
775(mismatch 100.0%)
776 x: array([[  3.875e-03,  -9.523e+12],
777       [  1.028e-02,   5.539e+12],
778       [ -6.831e-04,   7.132e+11],...
779 y: array([[  3.875e-03,   4.419e+13],
780       [  1.028e-02,   1.859e+14],
781       [ -6.831e-04,  -9.220e+14],...
782
783======================================================================
784FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'SM', None, 0.5, <function aslinearoperator at 0x10eb2aa28>, None, 'buckling')
785----------------------------------------------------------------------
786Traceback (most recent call last):
787  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
788    self.test(*self.arg)
789  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
790    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
791  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
792    verbose=verbose, header=header)
793  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
794    raise AssertionError(msg)
795AssertionError:
796Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
797error for eigsh:standard, typ=d, which=SM, sigma=0.5, mattype=aslinearoperator, OPpart=None, mode=buckling
798(mismatch 100.0%)
799 x: array([[  3.328e-02,   6.635e+06],
800       [  8.831e-02,  -3.638e+06],
801       [ -5.866e-03,   1.642e+06],...
802 y: array([[  3.328e-02,   1.054e+06],
803       [  8.831e-02,  -5.778e+05],
804       [ -5.866e-03,   2.628e+05],...
805
806======================================================================
807FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'SM', None, 0.5, <function aslinearoperator at 0x10eb2aa28>, None, 'cayley')
808----------------------------------------------------------------------
809Traceback (most recent call last):
810  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
811    self.test(*self.arg)
812  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
813    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
814  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
815    verbose=verbose, header=header)
816  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
817    raise AssertionError(msg)
818AssertionError:
819Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
820error for eigsh:standard, typ=d, which=SM, sigma=0.5, mattype=aslinearoperator, OPpart=None, mode=cayley
821(mismatch 100.0%)
822 x: array([[  3.875e-03,  -8.780e+01],
823       [  1.028e-02,   4.352e+01],
824       [ -6.831e-04,   7.005e+01],...
825 y: array([[  3.875e-03,  -7.327e+02],
826       [  1.028e-02,   3.227e+02],
827       [ -6.831e-04,   5.101e+02],...
828
829======================================================================
830FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'SM', None, 0.5, <function asarray at 0x10caaede8>, None, 'buckling')
831----------------------------------------------------------------------
832Traceback (most recent call last):
833  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
834    self.test(*self.arg)
835  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
836    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
837  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
838    verbose=verbose, header=header)
839  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
840    raise AssertionError(msg)
841AssertionError:
842Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
843error for eigsh:standard, typ=d, which=SM, sigma=0.5, mattype=asarray, OPpart=None, mode=buckling
844(mismatch 100.0%)
845 x: array([[ -3.328e-02,   2.754e+06],
846       [ -8.831e-02,  -1.512e+06],
847       [  5.866e-03,   6.813e+05],...
848 y: array([[ -3.328e-02,   4.378e+05],
849       [ -8.831e-02,  -2.402e+05],
850       [  5.866e-03,   1.088e+05],...
851
852======================================================================
853FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'SM', None, 0.5, <function asarray at 0x10caaede8>, None, 'cayley')
854----------------------------------------------------------------------
855Traceback (most recent call last):
856  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
857    self.test(*self.arg)
858  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
859    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
860  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
861    verbose=verbose, header=header)
862  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
863    raise AssertionError(msg)
864AssertionError:
865Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
866error for eigsh:standard, typ=d, which=SM, sigma=0.5, mattype=asarray, OPpart=None, mode=cayley
867(mismatch 100.0%)
868 x: array([[ -3.875e-03,  -8.129e+11],
869       [ -1.028e-02,   4.425e+11],
870       [  6.831e-04,   1.952e+11],...
871 y: array([[ -3.875e-03,   1.366e+12],
872       [ -1.028e-02,   1.272e+13],
873       [  6.831e-04,  -5.870e+13],...
874
875======================================================================
876FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'LA', None, 0.5, <function asarray at 0x10caaede8>, None, 'normal')
877----------------------------------------------------------------------
878Traceback (most recent call last):
879  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
880    self.test(*self.arg)
881  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
882    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
883  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
884    verbose=verbose, header=header)
885  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
886    raise AssertionError(msg)
887AssertionError:
888Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
889error for eigsh:standard, typ=d, which=LA, sigma=0.5, mattype=asarray, OPpart=None, mode=normal
890(mismatch 100.0%)
891 x: array([[ -4.764e+07,  -6.380e-01],
892       [ -3.128e+07,   2.707e-01],
893       [ -1.767e+08,   4.852e-01],...
894 y: array([[ -1.148e+09,  -6.380e-01],
895       [ -6.467e+08,   2.707e-01],
896       [ -3.865e+09,   4.852e-01],...
897
898======================================================================
899FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'SA', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'normal')
900----------------------------------------------------------------------
901Traceback (most recent call last):
902  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
903    self.test(*self.arg)
904  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
905    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
906  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
907    verbose=verbose, header=header)
908  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
909    raise AssertionError(msg)
910AssertionError:
911Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
912error for eigsh:standard, typ=d, which=SA, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=normal
913(mismatch 100.0%)
914 x: array([[ -4.275e+07,  -2.382e-01],
915       [ -2.523e+07,   1.079e-01],
916       [ -9.437e+06,  -1.247e-01],...
917 y: array([[ -7.755e+06,  -2.382e-01],
918       [  4.934e+05,   1.079e-01],
919       [  1.929e+05,  -1.247e-01],...
920
921======================================================================
922FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'SA', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'buckling')
923----------------------------------------------------------------------
924Traceback (most recent call last):
925  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
926    self.test(*self.arg)
927  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
928    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
929  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
930    verbose=verbose, header=header)
931  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
932    raise AssertionError(msg)
933AssertionError:
934Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
935error for eigsh:standard, typ=d, which=SA, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=buckling
936(mismatch 100.0%)
937 x: array([[ -9.177e+03,  -3.538e-01],
938       [ -2.340e+04,   1.602e-01],
939       [  4.580e+03,  -1.852e-01],...
940 y: array([[ -2.973e+05,  -3.538e-01],
941       [ -7.855e+05,   1.602e-01],
942       [  6.997e+04,  -1.852e-01],...
943
944======================================================================
945FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'SA', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'cayley')
946----------------------------------------------------------------------
947Traceback (most recent call last):
948  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
949    self.test(*self.arg)
950  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
951    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
952  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
953    verbose=verbose, header=header)
954  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
955    raise AssertionError(msg)
956AssertionError:
957Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
958error for eigsh:standard, typ=d, which=SA, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=cayley
959(mismatch 100.0%)
960 x: array([[ -4.696e+07,   2.382e-01],
961       [  6.893e+07,  -1.079e-01],
962       [  5.354e+07,   1.247e-01],...
963 y: array([[ -2.070e+06,   2.382e-01],
964       [  4.553e+07,  -1.079e-01],
965       [ -1.433e+08,   1.247e-01],...
966
967======================================================================
968FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'SA', None, 0.5, <function aslinearoperator at 0x10eb2aa28>, None, 'normal')
969----------------------------------------------------------------------
970Traceback (most recent call last):
971  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
972    self.test(*self.arg)
973  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
974    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
975  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
976    verbose=verbose, header=header)
977  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
978    raise AssertionError(msg)
979AssertionError:
980Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
981error for eigsh:standard, typ=d, which=SA, sigma=0.5, mattype=aslinearoperator, OPpart=None, mode=normal
982(mismatch 100.0%)
983 x: array([[ -1.560e+08,  -2.382e-01],
984       [  3.698e+08,   1.079e-01],
985       [  4.012e+08,  -1.247e-01],...
986 y: array([[ -9.839e+07,  -2.382e-01],
987       [  8.186e+07,   1.079e-01],
988       [  5.961e+07,  -1.247e-01],...
989
990======================================================================
991FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'SA', None, 0.5, <function asarray at 0x10caaede8>, None, 'normal')
992----------------------------------------------------------------------
993Traceback (most recent call last):
994  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
995    self.test(*self.arg)
996  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
997    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
998  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
999    verbose=verbose, header=header)
1000  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1001    raise AssertionError(msg)
1002AssertionError:
1003Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
1004error for eigsh:standard, typ=d, which=SA, sigma=0.5, mattype=asarray, OPpart=None, mode=normal
1005(mismatch 100.0%)
1006 x: array([[  4.556e+07,   2.382e-01],
1007       [  6.847e+07,  -1.079e-01],
1008       [  5.109e+07,   1.247e-01],...
1009 y: array([[ -1.807e+06,   2.382e-01],
1010       [ -1.580e+06,  -1.079e-01],
1011       [  1.492e+07,   1.247e-01],...
1012
1013======================================================================
1014FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'SA', None, 0.5, <function asarray at 0x10caaede8>, None, 'buckling')
1015----------------------------------------------------------------------
1016Traceback (most recent call last):
1017  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1018    self.test(*self.arg)
1019  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1020    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1021  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1022    verbose=verbose, header=header)
1023  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1024    raise AssertionError(msg)
1025AssertionError:
1026Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
1027error for eigsh:standard, typ=d, which=SA, sigma=0.5, mattype=asarray, OPpart=None, mode=buckling
1028(mismatch 100.0%)
1029 x: array([[ -7.874e+04,   3.538e-01],
1030       [ -2.118e+05,  -1.602e-01],
1031       [  2.086e+02,   1.852e-01],...
1032 y: array([[ -2.715e+06,   3.538e-01],
1033       [ -7.220e+06,  -1.602e-01],
1034       [  3.931e+05,   1.852e-01],...
1035
1036======================================================================
1037FAIL: test_arpack.test_symmetric_modes(True, <std-symmetric>, 'd', 2, 'SA', None, 0.5, <function asarray at 0x10caaede8>, None, 'cayley')
1038----------------------------------------------------------------------
1039Traceback (most recent call last):
1040  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1041    self.test(*self.arg)
1042  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1043    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1044  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1045    verbose=verbose, header=header)
1046  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1047    raise AssertionError(msg)
1048AssertionError:
1049Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
1050error for eigsh:standard, typ=d, which=SA, sigma=0.5, mattype=asarray, OPpart=None, mode=cayley
1051(mismatch 100.0%)
1052 x: array([[ -3.700e+08,  -2.382e-01],
1053       [ -4.042e+08,   1.079e-01],
1054       [ -2.538e+08,  -1.247e-01],...
1055 y: array([[ -3.323e+07,  -2.382e-01],
1056       [ -9.141e+06,   1.079e-01],
1057       [ -2.025e+06,  -1.247e-01],...
1058
1059======================================================================
1060FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'f', 2, 'LM', None, 0.5, <function asarray at 0x10caaede8>, None, 'normal')
1061----------------------------------------------------------------------
1062Traceback (most recent call last):
1063  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1064    self.test(*self.arg)
1065  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1066    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1067  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1068    verbose=verbose, header=header)
1069  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1070    raise AssertionError(msg)
1071AssertionError:
1072Not equal to tolerance rtol=0.000357628, atol=0.000357628
1073error for eigsh:general, typ=f, which=LM, sigma=0.5, mattype=asarray, OPpart=None, mode=normal
1074(mismatch 100.0%)
1075 x: array([[-0.019, -0.44 ],
1076       [-0.111, -0.254],
1077       [-0.132, -0.368],...
1078 y: array([[-0.019, -0.44 ],
1079       [-0.111, -0.255],
1080       [-0.132, -0.368],...
1081
1082======================================================================
1083FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'f', 2, 'SM', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'buckling')
1084----------------------------------------------------------------------
1085Traceback (most recent call last):
1086  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1087    self.test(*self.arg)
1088  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1089    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1090  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1091    verbose=verbose, header=header)
1092  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1093    raise AssertionError(msg)
1094AssertionError:
1095Not equal to tolerance rtol=0.00178814, atol=0.000357628
1096error for eigsh:general, typ=f, which=SM, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=buckling
1097(mismatch 100.0%)
1098 x: array([[ -1.094e-01,  -7.124e+05],
1099       [ -7.154e-02,  -4.171e+05],
1100       [  6.895e-02,  -5.916e+05],...
1101 y: array([[ -1.094e-01,  -2.556e+05],
1102       [ -7.154e-02,  -1.485e+05],
1103       [  6.895e-02,  -2.135e+05],...
1104
1105======================================================================
1106FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'f', 2, 'SM', None, 0.5, <function asarray at 0x10caaede8>, None, 'buckling')
1107----------------------------------------------------------------------
1108Traceback (most recent call last):
1109  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1110    self.test(*self.arg)
1111  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1112    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1113  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1114    verbose=verbose, header=header)
1115  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1116    raise AssertionError(msg)
1117AssertionError:
1118Not equal to tolerance rtol=0.000357628, atol=0.000357628
1119error for eigsh:general, typ=f, which=SM, sigma=0.5, mattype=asarray, OPpart=None, mode=buckling
1120(mismatch 100.0%)
1121 x: array([[ -1.094e-01,  -4.879e+05],
1122       [ -7.154e-02,  -2.853e+05],
1123       [  6.895e-02,  -4.057e+05],...
1124 y: array([[ -1.094e-01,  -1.755e+05],
1125       [ -7.154e-02,  -1.020e+05],
1126       [  6.895e-02,  -1.466e+05],...
1127
1128======================================================================
1129FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'f', 2, 'SA', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'buckling')
1130----------------------------------------------------------------------
1131Traceback (most recent call last):
1132  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1133    self.test(*self.arg)
1134  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1135    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1136  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1137    verbose=verbose, header=header)
1138  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1139    raise AssertionError(msg)
1140AssertionError:
1141Not equal to tolerance rtol=0.00178814, atol=0.000357628
1142error for eigsh:general, typ=f, which=SA, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=buckling
1143(mismatch 100.0%)
1144 x: array([[ 1.153,  0.055],
1145       [-2.024,  0.314],
1146       [-1.187,  0.375],...
1147 y: array([[ 0.759,  0.055],
1148       [ 0.414,  0.314],
1149       [ 0.614,  0.375],...
1150
1151======================================================================
1152FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'f', 2, 'SA', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'cayley')
1153----------------------------------------------------------------------
1154Traceback (most recent call last):
1155  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1156    self.test(*self.arg)
1157  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1158    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1159  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1160    verbose=verbose, header=header)
1161  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1162    raise AssertionError(msg)
1163AssertionError:
1164Not equal to tolerance rtol=0.00178814, atol=0.000357628
1165error for eigsh:general, typ=f, which=SA, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=cayley
1166(mismatch 100.0%)
1167 x: array([[ 0.433,  0.019],
1168       [ 0.287,  0.111],
1169       [ 0.393,  0.132],...
1170 y: array([[ 0.44 ,  0.019],
1171       [ 0.255,  0.111],
1172       [ 0.368,  0.132],...
1173
1174======================================================================
1175FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'f', 2, 'SA', None, 0.5, <function asarray at 0x10caaede8>, None, 'normal')
1176----------------------------------------------------------------------
1177Traceback (most recent call last):
1178  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1179    self.test(*self.arg)
1180  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1181    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1182  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1183    verbose=verbose, header=header)
1184  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1185    raise AssertionError(msg)
1186AssertionError:
1187Not equal to tolerance rtol=0.000357628, atol=0.000357628
1188error for eigsh:general, typ=f, which=SA, sigma=0.5, mattype=asarray, OPpart=None, mode=normal
1189(mismatch 100.0%)
1190 x: array([[ -3.708e+09,   1.936e-02],
1191       [  1.880e+10,   1.105e-01],
1192       [  1.420e+10,   1.322e-01],...
1193 y: array([[ -6.493e+07,   1.936e-02],
1194       [  1.499e+08,   1.105e-01],
1195       [  1.308e+08,   1.322e-01],...
1196
1197======================================================================
1198FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'f', 2, 'SA', None, 0.5, <function asarray at 0x10caaede8>, None, 'buckling')
1199----------------------------------------------------------------------
1200Traceback (most recent call last):
1201  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1202    self.test(*self.arg)
1203  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1204    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1205  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1206    verbose=verbose, header=header)
1207  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1208    raise AssertionError(msg)
1209AssertionError:
1210Not equal to tolerance rtol=0.000357628, atol=0.000357628
1211error for eigsh:general, typ=f, which=SA, sigma=0.5, mattype=asarray, OPpart=None, mode=buckling
1212(mismatch 100.0%)
1213 x: array([[ -5.294e+03,   5.496e-02],
1214       [ -4.623e+03,   3.138e-01],
1215       [ -2.867e+03,   3.754e-01],...
1216 y: array([[ -1.006e+03,   5.496e-02],
1217       [ -8.527e+02,   3.138e-01],
1218       [ -5.616e+02,   3.754e-01],...
1219
1220======================================================================
1221FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'f', 2, 'SA', None, 0.5, <function asarray at 0x10caaede8>, None, 'cayley')
1222----------------------------------------------------------------------
1223Traceback (most recent call last):
1224  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1225    self.test(*self.arg)
1226  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1227    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1228  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1229    verbose=verbose, header=header)
1230  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1231    raise AssertionError(msg)
1232AssertionError:
1233Not equal to tolerance rtol=0.000357628, atol=0.000357628
1234error for eigsh:general, typ=f, which=SA, sigma=0.5, mattype=asarray, OPpart=None, mode=cayley
1235(mismatch 100.0%)
1236 x: array([[ 0.439,  0.019],
1237       [ 0.26 ,  0.111],
1238       [ 0.372,  0.132],...
1239 y: array([[ 0.44 ,  0.019],
1240       [ 0.255,  0.111],
1241       [ 0.368,  0.132],...
1242
1243======================================================================
1244FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'd', 2, 'LM', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'normal')
1245----------------------------------------------------------------------
1246Traceback (most recent call last):
1247  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1248    self.test(*self.arg)
1249  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1250    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1251  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1252    verbose=verbose, header=header)
1253  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1254    raise AssertionError(msg)
1255AssertionError:
1256Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
1257error for eigsh:general, typ=d, which=LM, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=normal
1258(mismatch 100.0%)
1259 x: array([[ 0.019,  0.44 ],
1260       [ 0.111,  0.255],
1261       [ 0.132,  0.368],...
1262 y: array([[ 0.019,  0.44 ],
1263       [ 0.111,  0.255],
1264       [ 0.132,  0.368],...
1265
1266======================================================================
1267FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'd', 2, 'LM', None, 0.5, <function aslinearoperator at 0x10eb2aa28>, None, 'normal')
1268----------------------------------------------------------------------
1269Traceback (most recent call last):
1270  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1271    self.test(*self.arg)
1272  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1273    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1274  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1275    verbose=verbose, header=header)
1276  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1277    raise AssertionError(msg)
1278AssertionError:
1279Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
1280error for eigsh:general, typ=d, which=LM, sigma=0.5, mattype=aslinearoperator, OPpart=None, mode=normal
1281(mismatch 100.0%)
1282 x: array([[-0.019, -0.443],
1283       [-0.111, -0.24 ],
1284       [-0.132, -0.357],...
1285 y: array([[-0.019, -0.44 ],
1286       [-0.111, -0.255],
1287       [-0.132, -0.368],...
1288
1289======================================================================
1290FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'd', 2, 'LM', None, 0.5, <function asarray at 0x10caaede8>, None, 'normal')
1291----------------------------------------------------------------------
1292Traceback (most recent call last):
1293  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1294    self.test(*self.arg)
1295  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1296    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1297  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1298    verbose=verbose, header=header)
1299  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1300    raise AssertionError(msg)
1301AssertionError:
1302Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
1303error for eigsh:general, typ=d, which=LM, sigma=0.5, mattype=asarray, OPpart=None, mode=normal
1304(mismatch 100.0%)
1305 x: array([[-0.019, -0.44 ],
1306       [-0.111, -0.255],
1307       [-0.132, -0.368],...
1308 y: array([[-0.019, -0.44 ],
1309       [-0.111, -0.255],
1310       [-0.132, -0.368],...
1311
1312======================================================================
1313FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'd', 2, 'SM', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'buckling')
1314----------------------------------------------------------------------
1315Traceback (most recent call last):
1316  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1317    self.test(*self.arg)
1318  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1319    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1320  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1321    verbose=verbose, header=header)
1322  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1323    raise AssertionError(msg)
1324AssertionError:
1325Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
1326error for eigsh:general, typ=d, which=SM, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=buckling
1327(mismatch 100.0%)
1328 x: array([[  1.094e-01,   9.773e+04],
1329       [  7.154e-02,   5.183e+04],
1330       [ -6.895e-02,   8.638e+04],...
1331 y: array([[  1.094e-01,   3.999e+04],
1332       [  7.154e-02,   2.293e+04],
1333       [ -6.895e-02,   3.371e+04],...
1334
1335======================================================================
1336FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'd', 2, 'SM', None, 0.5, <function aslinearoperator at 0x10eb2aa28>, None, 'buckling')
1337----------------------------------------------------------------------
1338Traceback (most recent call last):
1339  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1340    self.test(*self.arg)
1341  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1342    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1343  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1344    verbose=verbose, header=header)
1345  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1346    raise AssertionError(msg)
1347AssertionError:
1348Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
1349error for eigsh:general, typ=d, which=SM, sigma=0.5, mattype=aslinearoperator, OPpart=None, mode=buckling
1350(mismatch 100.0%)
1351 x: array([[  1.094e-01,   1.006e+05],
1352       [  7.154e-02,   4.865e+04],
1353       [ -6.895e-02,   9.369e+04],...
1354 y: array([[  1.094e-01,   4.609e+04],
1355       [  7.154e-02,   2.615e+04],
1356       [ -6.895e-02,   3.915e+04],...
1357
1358======================================================================
1359FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'd', 2, 'SM', None, 0.5, <function asarray at 0x10caaede8>, None, 'buckling')
1360----------------------------------------------------------------------
1361Traceback (most recent call last):
1362  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1363    self.test(*self.arg)
1364  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1365    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1366  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1367    verbose=verbose, header=header)
1368  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1369    raise AssertionError(msg)
1370AssertionError:
1371Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
1372error for eigsh:general, typ=d, which=SM, sigma=0.5, mattype=asarray, OPpart=None, mode=buckling
1373(mismatch 100.0%)
1374 x: array([[  1.094e-01,  -1.558e+07],
1375       [  7.154e-02,  -9.058e+06],
1376       [ -6.895e-02,  -1.301e+07],...
1377 y: array([[  1.094e-01,  -5.665e+06],
1378       [  7.154e-02,  -3.286e+06],
1379       [ -6.895e-02,  -4.737e+06],...
1380
1381======================================================================
1382FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'd', 2, 'LA', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'buckling')
1383----------------------------------------------------------------------
1384Traceback (most recent call last):
1385  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1386    self.test(*self.arg)
1387  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1388    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1389  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1390    verbose=verbose, header=header)
1391  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1392    raise AssertionError(msg)
1393AssertionError:
1394Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
1395error for eigsh:general, typ=d, which=LA, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=buckling
1396(mismatch 100.0%)
1397 x: array([[-0.674,  0.809],
1398       [-0.799,  0.675],
1399       [-0.225,  0.459],...
1400 y: array([[-0.674,  0.809],
1401       [-0.799,  0.675],
1402       [-0.225,  0.459],...
1403
1404======================================================================
1405FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'd', 2, 'SA', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'normal')
1406----------------------------------------------------------------------
1407Traceback (most recent call last):
1408  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1409    self.test(*self.arg)
1410  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1411    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1412  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1413    verbose=verbose, header=header)
1414  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1415    raise AssertionError(msg)
1416AssertionError:
1417Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
1418error for eigsh:general, typ=d, which=SA, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=normal
1419(mismatch 100.0%)
1420 x: array([[-0.44 , -0.019],
1421       [-0.255, -0.111],
1422       [-0.368, -0.132],...
1423 y: array([[-0.44 , -0.019],
1424       [-0.255, -0.111],
1425       [-0.368, -0.132],...
1426
1427======================================================================
1428FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'd', 2, 'SA', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'buckling')
1429----------------------------------------------------------------------
1430Traceback (most recent call last):
1431  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1432    self.test(*self.arg)
1433  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1434    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1435  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1436    verbose=verbose, header=header)
1437  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1438    raise AssertionError(msg)
1439AssertionError:
1440Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
1441error for eigsh:general, typ=d, which=SA, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=buckling
1442(mismatch 100.0%)
1443 x: array([[-0.879,  0.055],
1444       [-0.569,  0.314],
1445       [-0.704,  0.375],...
1446 y: array([[-0.776,  0.055],
1447       [-0.456,  0.314],
1448       [-0.643,  0.375],...
1449
1450======================================================================
1451FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'd', 2, 'SA', None, 0.5, <class 'scipy.sparse.csr.csr_matrix'>, None, 'cayley')
1452----------------------------------------------------------------------
1453Traceback (most recent call last):
1454  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1455    self.test(*self.arg)
1456  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1457    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1458  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1459    verbose=verbose, header=header)
1460  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1461    raise AssertionError(msg)
1462AssertionError:
1463Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
1464error for eigsh:general, typ=d, which=SA, sigma=0.5, mattype=csr_matrix, OPpart=None, mode=cayley
1465(mismatch 100.0%)
1466 x: array([[-0.441, -0.019],
1467       [-0.256, -0.111],
1468       [-0.368, -0.132],...
1469 y: array([[-0.44 , -0.019],
1470       [-0.255, -0.111],
1471       [-0.368, -0.132],...
1472
1473======================================================================
1474FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'd', 2, 'SA', None, 0.5, <function aslinearoperator at 0x10eb2aa28>, None, 'normal')
1475----------------------------------------------------------------------
1476Traceback (most recent call last):
1477  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1478    self.test(*self.arg)
1479  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1480    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1481  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1482    verbose=verbose, header=header)
1483  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1484    raise AssertionError(msg)
1485AssertionError:
1486Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
1487error for eigsh:general, typ=d, which=SA, sigma=0.5, mattype=aslinearoperator, OPpart=None, mode=normal
1488(mismatch 100.0%)
1489 x: array([[ 0.799, -0.019],
1490       [ 0.806, -0.111],
1491       [ 0.318, -0.132],...
1492 y: array([[-0.196, -0.019],
1493       [-0.05 , -0.111],
1494       [-0.231, -0.132],...
1495
1496======================================================================
1497FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'd', 2, 'SA', None, 0.5, <function aslinearoperator at 0x10eb2aa28>, None, 'buckling')
1498----------------------------------------------------------------------
1499Traceback (most recent call last):
1500  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1501    self.test(*self.arg)
1502  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1503    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1504  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1505    verbose=verbose, header=header)
1506  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1507    raise AssertionError(msg)
1508AssertionError:
1509Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
1510error for eigsh:general, typ=d, which=SA, sigma=0.5, mattype=aslinearoperator, OPpart=None, mode=buckling
1511(mismatch 100.0%)
1512 x: array([[-0.785, -0.055],
1513       [-0.47 , -0.314],
1514       [-0.646, -0.375],...
1515 y: array([[-0.759, -0.055],
1516       [-0.442, -0.314],
1517       [-0.634, -0.375],...
1518
1519======================================================================
1520FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'd', 2, 'SA', None, 0.5, <function aslinearoperator at 0x10eb2aa28>, None, 'cayley')
1521----------------------------------------------------------------------
1522Traceback (most recent call last):
1523  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1524    self.test(*self.arg)
1525  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1526    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1527  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1528    verbose=verbose, header=header)
1529  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1530    raise AssertionError(msg)
1531AssertionError:
1532Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
1533error for eigsh:general, typ=d, which=SA, sigma=0.5, mattype=aslinearoperator, OPpart=None, mode=cayley
1534(mismatch 100.0%)
1535 x: array([[ 0.426,  0.019],
1536       [ 0.176,  0.111],
1537       [ 0.267,  0.132],...
1538 y: array([[ 0.422,  0.019],
1539       [ 0.241,  0.111],
1540       [ 0.356,  0.132],...
1541
1542======================================================================
1543FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'd', 2, 'SA', None, 0.5, <function asarray at 0x10caaede8>, None, 'normal')
1544----------------------------------------------------------------------
1545Traceback (most recent call last):
1546  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1547    self.test(*self.arg)
1548  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1549    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1550  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1551    verbose=verbose, header=header)
1552  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1553    raise AssertionError(msg)
1554AssertionError:
1555Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
1556error for eigsh:general, typ=d, which=SA, sigma=0.5, mattype=asarray, OPpart=None, mode=normal
1557(mismatch 100.0%)
1558 x: array([[ -1.350e+05,   1.936e-02],
1559       [  7.000e+05,   1.105e-01],
1560       [  5.274e+05,   1.322e-01],...
1561 y: array([[ -2.285e+03,   1.936e-02],
1562       [  5.721e+03,   1.105e-01],
1563       [  4.888e+03,   1.322e-01],...
1564
1565======================================================================
1566FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'd', 2, 'SA', None, 0.5, <function asarray at 0x10caaede8>, None, 'buckling')
1567----------------------------------------------------------------------
1568Traceback (most recent call last):
1569  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1570    self.test(*self.arg)
1571  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1572    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1573  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1574    verbose=verbose, header=header)
1575  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1576    raise AssertionError(msg)
1577AssertionError:
1578Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
1579error for eigsh:general, typ=d, which=SA, sigma=0.5, mattype=asarray, OPpart=None, mode=buckling
1580(mismatch 100.0%)
1581 x: array([[ 0.766,  0.055],
1582       [ 0.452,  0.314],
1583       [ 0.641,  0.375],...
1584 y: array([[ 0.757,  0.055],
1585       [ 0.44 ,  0.314],
1586       [ 0.633,  0.375],...
1587
1588======================================================================
1589FAIL: test_arpack.test_symmetric_modes(True, <gen-symmetric>, 'd', 2, 'SA', None, 0.5, <function asarray at 0x10caaede8>, None, 'cayley')
1590----------------------------------------------------------------------
1591Traceback (most recent call last):
1592  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
1593    self.test(*self.arg)
1594  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec
1595    assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)
1596  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 1179, in assert_allclose
1597    verbose=verbose, header=header)
1598  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/testing/utils.py", line 645, in assert_array_compare
1599    raise AssertionError(msg)
1600AssertionError:
1601Not equal to tolerance rtol=4.44089e-13, atol=4.44089e-13
1602error for eigsh:general, typ=d, which=SA, sigma=0.5, mattype=asarray, OPpart=None, mode=cayley
1603(mismatch 100.0%)
1604 x: array([[ 2.703, -0.019],
1605       [ 2.741, -0.111],
1606       [ 1.163, -0.132],...
1607 y: array([[ 0.056, -0.019],
1608       [ 0.183, -0.111],
1609       [-0.103, -0.132],...
1610
1611----------------------------------------------------------------------
1612Ran 6136 tests in 86.038s
1613
1614FAILED (KNOWNFAIL=15, SKIP=29, errors=1, failures=73)
1615<nose.result.TextTestResult run=6136 errors=1 failures=73>