version 1.2, 1999/12/21 02:47:31 |
version 1.3, 2003/04/20 08:01:25 |
|
|
@comment $OpenXM$ |
@comment $OpenXM: OpenXM/src/asir-doc/parts/debug.texi,v 1.2 1999/12/21 02:47:31 noro Exp $ |
\BJP |
\BJP |
@node デバッガ,,, Top |
@node デバッガ,,, Top |
@chapter デバッガ |
@chapter デバッガ |
|
|
[4] factorial(6); <-- call for factorial(6) |
[4] factorial(6); <-- call for factorial(6) |
stopped in factorial at line 5 in file "./fac" |
stopped in factorial at line 5 in file "./fac" |
5 return X * factorial(X - 1); |
5 return X * factorial(X - 1); |
(debug) where <-- display the calling sequence up to |
(debug) where <-- display the calling sequence |
factorial(), line 5 in "./fac" this break point |
factorial(), line 5 in "./fac" up to this break point |
(debug) print X <-- Display the value of X |
(debug) print X <-- Display the value of X |
X = 6 |
X = 6 |
(debug) step <-- step execution (enters function) |
(debug) step <-- step execution |
|
(enters function) |
stopped in factorial at line 2 in file "./fac" |
stopped in factorial at line 2 in file "./fac" |
2 if ( !X ) |
2 if ( !X ) |
(debug) where |
(debug) where |
Line 477 new aliases in the debug-mode during an execution. |
|
Line 478 new aliases in the debug-mode during an execution. |
|
@example |
@example |
lex_hensel(La,[a,b,c],0,[a,b,c],0); |
lex_hensel(La,[a,b,c],0,[a,b,c],0); |
stopped in gennf at line 226 in file "/home/usr3/noro/asir/gr" |
stopped in gennf at line 226 in file "/home/usr3/noro/asir/gr" |
226 N = length(V); Len = length(G); dp_ord(O); PS = newvect(Len); |
226 N = length(V); Len = length(G); dp_ord(O); PS = newvect(Len); |
(debug) p V |
(debug) p V |
V = [a,b,c] |
V = [a,b,c] |
(debug) c |
(debug) c |