Last Name Evaluation
|
Maple supports the concept of "last name evaluation." This refers to the specific evaluation rules applied to certain kinds of expressions.
|
|
Most Maple expressions are evaluated by using full recursive evaluation. This implies that each name in the expression is fully evaluated to the last assigned expression in any chain of assignments. For example, names that are assigned integers are subject to normal, full evaluation.
|
| (1) |
| (2) |
| (3) |
| (4) |
| (5) |
|
However, a name assigned to a value that is one of the special types, such as procedures, modules and tables (hence, matrices, vectors and arrays, but not rtables), is not fully evaluated during normal evaluation. Assignment chains are only evaluated to the last name assigned in the chain (hence the name of this property).
|
|
Note: The commands array, matrix, and vector are deprecated. The rtable-based commands Array, Matrix, and Vector supersede them.
|
| (6) |
| (7) |
>
|
u := table( [ 1 = "a", 2 = "b" ] );
|
| (8) |
| (9) |
| (10) |
|
To obtain the final expression to which the last name in an assignment chain is assigned, you can use the procedure eval.
|
>
|
u := table( [ "a" = 1, "b" = 2, "c" = 3 ] );
|
| (11) |
| (12) |
| (13) |
|
This is frequently required when returning such expressions from procedures. A procedure that returns a table, module, or another procedure normally requires an evaluation at the return site, using the two-argument form of eval in which the second argument is 1.
|
>
|
f := proc( n )
local p;
p := proc( s ) modp( 1 + s, n ) end;
p
end proc:
|
| (14) |
|
returns the escaped local variable name p, rather than the procedure that it is assigned. (Of course, the local variable p is still assigned the procedure.) By using a call to eval on the return expression
|
>
|
f := proc( n )
local p;
p := proc( s ) modp( 1 + s, n ) end;
eval( p, 1 )
end proc:
|
| (15) |
|
the actual procedure is returned.
|
|
See Also
|
|
Array, eval, Eval, evala, evalb, evalc, evalf, evalhf, evalm(deprecated), evaln, evalr, map, map2, procedure, spec_eval_rules, timelimit, trace, uneval, value, zip
|
|