Skip to content

Commit 4db94c1

Browse files
committed
src/sage/matrix/matrix1.pyx: needs sage.libs.giac -> needs giac
Some tests in this file use the giac pexpect interface but are tagged with "needs sage.libs.giac". Now that we have a feature for the giac executable, "needs giac" is more appropriate.
1 parent 22515a2 commit 4db94c1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/sage/matrix/matrix1.pyx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -216,21 +216,21 @@ cdef class Matrix(Matrix0):
216216
EXAMPLES::
217217
218218
sage: M = matrix(ZZ, 2, range(4))
219-
sage: giac(M) # needs sage.libs.giac
219+
sage: giac(M) # needs giac
220220
[[0,1],[2,3]]
221221
222222
sage: M = matrix(QQ, 3, [1,2,3, 4/3,5/3,6/4, 7,8,9])
223-
sage: giac(M) # needs sage.libs.giac
223+
sage: giac(M) # needs giac
224224
[[1,2,3],[4/3,5/3,3/2],[7,8,9]]
225225
226226
sage: P.<x> = ZZ[]
227227
sage: M = matrix(P, 2, [-9*x^2-2*x+2, x-1, x^2+8*x, -3*x^2+5])
228-
sage: giac(M) # needs sage.libs.giac
228+
sage: giac(M) # needs giac
229229
[[-9*sageVARx^2-2*sageVARx+2,sageVARx-1],[sageVARx^2+8*sageVARx,-3*sageVARx^2+5]]
230230
231231
sage: y = var('y') # needs sage.symbolic
232232
sage: M = matrix(SR, 2, [y+sin(y), y - 4, 1/y, dilog(y)]) # needs sage.symbolic
233-
sage: giac(M).det().sage() # needs sage.libs.giac sage.symbolic
233+
sage: giac(M).det().sage() # needs giac sage.symbolic
234234
(y^2*dilog(y) + y*dilog(y)*sin(y) - y + 4)/y
235235
"""
236236
s = ','.join('[' + ','.join(cf._giac_init_() for cf in row) + ']'

0 commit comments

Comments
 (0)