Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
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