Question: How can I view 'sub-portions' of Maple procedures?

I am trying to learn more about certain maple functions using:

interface(verboseproc=2):
readlib(fsolve); #for example

This works well, but sometimes the function calls something else that I don't quite understand. An example for fsolve is when it has decided to use Newton's method:

#this is taken somewhere from inside the fsolve procedure

sol:='fsolve/sysnewton'(eqs,[r])

 

I can't figure out how to view the code for this 'sub-procedure', and I'm not even sure if my understanding of it is correct. Any help would be much appreciated. Thanks!

Please Wait...