Neven Sajko
unread,Feb 4, 2022, 7:36:40 AM2/4/22Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to fricas-devel
I think I managed to do what you want, at least with the version of
Fricas I currently have.
Try this:
(1) -> )trace Matrix(Integer) )ops minColIndex qelt
Packages traced:
Matrix(Integer)
(1) -> m: Matrix(Integer) := [[3]]
1<enter Matrix.minColIndex,9 : #2A((3))
1>exit Matrix.minColIndex,9 : 1
1<enter Matrix.qelt,10 : #2A((3))\1\1
1>exit Matrix.qelt,10 : 3
(1) [3]
(2) -> m + m
1<enter Matrix.minColIndex,9 : #2A((3))
1>exit Matrix.minColIndex,9 : 1
1<enter Matrix.qelt,10 : #2A((3))\1\1
1>exit Matrix.qelt,10 : 3
1<enter Matrix.qelt,10 : #2A((3))\1\1
1>exit Matrix.qelt,10 : 3
1<enter Matrix.minColIndex,9 : #2A((6))
1>exit Matrix.minColIndex,9 : 1
1<enter Matrix.qelt,10 : #2A((6))\1\1
1>exit Matrix.qelt,10 : 6
(2) [6]
As you can see, the requested functions from Matrix(Integer) are traced.
Regards,
Neven