ASSERT
check assertions
Calling Sequence
Parameters
Description
Thread Safety
Examples
ASSERT(cond, string)
ASSERT(cond)
cond
-
expression evaluating to true or false
string
ASSERT is used to guarantee pre- and post-conditions while a Maple procedure is executing.
If the first argument evaluates to false, an error is generated and the second argument is printed in order to identify the nature of the failure. Such an error cannot be trapped via try-catch.
If the first argument evaluates to true, ASSERT returns NULL.
The ASSERT mechanism can be turned on and off with kernelopts. If turned off, the overhead of processing an ASSERT is negligible.
The ASSERT command is thread-safe as of Maple 15.
For more information on thread safety, see index/threadsafe.
Query the current state.
kernelopts(assertlevel);
0
Turn assertions on (kernelopts returns its previous value).
kernelopts(assertlevel=1);
The following results in assertion failures.
ASSERT(type(x,integer),"x must be an integer");
Error, assertion failed, x must be an integer
a:=1: ASSERT(a>5,cat("a is too small: ",a));
Error, assertion failed, a is too small: 1
This assertion check will succeed.
ASSERT(true,"This is ok");
Assertion failures are not trappable.
try ASSERT(false) catch: end try;
Error, assertion failed
Turn assertions off (the previous value is returned again).
kernelopts(assertlevel=0);
1
Now assertion failures are ignored.
See Also
kernelopts
try
Download Help Document