Close
Close window
Allow - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.
Maplesoft logo
Maplesoft logo

Online Help

All Products Maple MapleSim


[フレーム] [フレーム]

CodeTools[Profiling]

Allow

allow procedures and modules marked by Ignore to be profiled

Calling Sequence

Allow(name)

Parameters

name

-

name of a function or module

Description

The Allow(name) command removes the mark on procedures and modules specified by the Ignore command. This allows Profile to collect information about the procedure.

Only procedures and modules that were passed to the Ignore command can be given to the Allow command.

Examples

>

withCodeToolsProfiling:

>

a := proc() return "a" end proc;

aprocreturnaend proc

(1)
>

b := proc() return "b" end proc;

bprocreturnbend proc

(2)
>

Ignorea

>

Profile

>

a:

>

b:

>

PrintProfilesa

>

PrintProfilesb

b
b := proc()
|Calls Seconds Words|
PROC | 1 0.000 0|
1 | 1 0.000 0| return "b"
end proc

>

UnProfile

>

Profilea

>

Allowa

>

Profile

>

a:

>

b:

>

PrintProfilesa

a
a := proc()
|Calls Seconds Words|
PROC | 1 0.000 0|
1 | 1 0.000 0| return "a"
end proc

>

PrintProfilesb

b
b := proc()
|Calls Seconds Words|
PROC | 1 0.000 0|
1 | 1 0.000 0| return "b"
end proc

>


Download Help Document

AltStyle によって変換されたページ (->オリジナル) /