Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
CodeTools[Profiling][Ignore] - mark procedures and modules that should not be profiled
Calling Sequence
Ignore(name)
Parameters
name
-
name of a function or module to be ignored
Description
The Ignore(name) command marks procedures and modules specifying that they are not profiled by calls to Profile.
A module or procedure that has been marked by Ignore can be unmarked using the Allow command.
If called with a module, the procedures in that module and in its submodules are ignored. These procedures inherit this behavior from the module, therefore, individual functions in an ignored module cannot be allowed. For more information, see Allow.
Examples
a := proc() return "a" end proc;
b := proc() return "b" end proc;
Error, (in CodeTools:-Profiling:-PrintProfiles) a is not currently profiled
b b := proc() |Calls Seconds Words| PROC | 1 0.000 0| 1 | 1 0.000 0| return "b" end proc
Error, (in CodeTools:-Profiling:-Profile) a is invalid or an ignored procedure
a a := proc() |Calls Seconds Words| PROC | 1 0.000 0| 1 | 1 0.000 0| return "a" end proc
See Also
CodeTools[Profiling], CodeTools[Profiling][Allow], CodeTools[Profiling][PrintProfiles], CodeTools[Profiling][Profile], rtable, select
Download Help Document