ASSERT - check assertions
|
Calling Sequence
|
|
ASSERT(cond, string)
ASSERT(cond)
|
|
Parameters
|
|
cond
|
-
|
expression evaluating to true or false
|
string
|
-
|
string
|
|
|
|
|
Description
|
|
•
|
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.
|
|
|
Thread Safety
|
|
•
|
The ASSERT command is thread-safe as of Maple 15.
|
|
|
Examples
|
|
Query the current state.
>
|
|
| (1) |
Turn assertions on (kernelopts returns its previous value).
>
|
|
| (2) |
The following results in assertion failures.
>
|
|
Error, assertion failed, x must be an integer
| |
>
|
|
Error, assertion failed, a is too small: 1
| |
This assertion check will succeed.
>
|
|
Assertion failures are not trappable.
>
|
|
Turn assertions off (the previous value is returned again).
>
|
|
| (3) |
Now assertion failures are ignored.
>
|
|
|
|
Download Help Document
Was this information helpful?