Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
codegen[maple2intrep] - converts a Maple procedure to an abstract syntax tree
codegen[intrep2maple] - converts an abstract syntax tree to a Maple procedure
Calling Sequence
maple2intrep(f)
intrep2maple(t)
Parameters
f
-
Maple procedure
t
expression (an abstract syntax tree)
Description
Important: The maple2intrep and intrep2maple commands have been deprecated. Use the superseding commands ToInert and FromInert instead to translate between Maple expressions and corresponding inert forms.
The maple2intrep function is used to convert a Maple procedure f into an intermediate representation for the procedure that is suitable for manipulating the code of f. The intermediate representation is an abstract syntax tree. The maple2intrep function also deduces the types of all parameters, local variables, and global variables in f. The intrep2maple function is used to convert an abstract syntax tree t to a Maple procedure.
The abstract syntax tree has the following structure. Express it by using a modified BNF grammar where:
* indicates zero or more occurrences
+ indicates one or more occurrences
[] indicate optional terms, and
| indicates alternatives.
tree ::= Proc( Name( declaration ),
Parameters( declaration* ),
Options( sequence ),
Description( string ),
Locals( declaration* ),
Globals( declarations* ),
StatSeq( statement* ) )
declaration ::= name :: type
statseq ::= StatSeq( statement* )
statement ::= expression |
Assign( name, expression ) |
If( [condition, statseq]+, [statseq] ) |
For( name, from, by, to, while, statseq ) |
For( name, in, while, statseq ) |
Return( sequence ) |
Error( sequence ) |
Break( ) |
Next( ) |
Read( string ) |
Save( sequence ) |
Comment( ... ) |
Quote( expression ) |
Ditto1( ) |
Ditto2( ) |
Ditto3( ) |
tree |
Nargs( ) | Args[i] | Args
In the abstract syntax tree, the names and Maple expressions become global and will evaluate.
Note: In the event that the parameter or local names in the procedure have global values, and it is desirable to use local names instead (to prevent evaluation problems with respect to the variable names), the option can be used.
When working with the abstract syntax tree, be careful not to evaluate parts of the tree, or else, use the `tools/rename` command to rename all symbols in the tree to unique names that do not evaluate. The library routine `tools/unrename` can be used to undo this renaming. An example is given below.
Examples
f := proc(x) local t; t := sin(x); x*t end proc:
This example shows the problem of evaluation.
f := proc(x,n) local i,t,A; A := array(1..n); t := 1; for i to n do t := x*t; A[i] := t; end do; A end proc:
Error, non-integer ranges in array/table creation
Rename all symbols in the program with new names.
Make a simple transformation on the program represented in the intermediate representation. Make the array A into a global variable.
This example shows the problem of evaluation in a case where use of `tools/rename` is insufficient for the task (so you must use outputvars=locals instead).
f := proc(X,n) local i; for i to n do X[i] := 0; end do; end proc;
Error, (in `intrep/type/bodyscan`) bad index into Array
See Also
codegen[makeproc], FromInert, ToInert
Download Help Document