An ordered tracer is...
‣ RecordingTracer ( ) | ( function ) |
Returns: A recording tracer
Constructor for recording tracers.
‣ FollowingTracer ( t ) | ( function ) |
Returns: A following tracer
If the argument t is a tracer, then this constructs a tracer that follows t.
‣ CanonicalisingTracerFromTracer ( ) | ( function ) |
Returns: A canonicalising tracer
Constructor for canonicalising tracers.
‣ EmptyCanonicalisingTracer ( arg ) | ( function ) |
‣ IsTracer ( t ) | ( filter ) |
Returns: true
or false
The category of tracers.
‣ AddEvent ( t, o ) | ( operation ) |
Returns: true
or false
Add the arbitrary GAP object o as an event to the tracer t. This returns true
if the event is accepted by the tracer, and false
if not. Events are always accepted by recording tracers.
‣ TraceLength ( t ) | ( operation ) |
Returns: An integer
Get the number of events in the tracer t.
‣ TraceEvent ( t, i ) | ( operation ) |
Returns: A GAP object
Get the event at position i in the tracer t. The argument i must lie in the range [1..TraceLength(t)]
.
‣ GetEvents ( t ) | ( operation ) |
Returns: A GAP list
Get a list of all events in the tracer.
generated by GAPDoc2HTML