#include <cassert>#include <iostream>#include <cppad/config.h>#include <cppad/error_handler.hpp>

Go to the source code of this file.
Defines | |
| #define | CPPAD_ASSERT_KNOWN(exp, msg) |
| #define | CPPAD_ASSERT_UNKNOWN(exp) |
| #define CPPAD_ASSERT_KNOWN | ( | exp, | |||
| msg | ) |
{ if( ! ( exp ) ) \
ErrorHandler::Call( \
true , \
__LINE__ , \
__FILE__ , \
#exp , \
msg ); \
}
Definition at line 96 of file cppad_assert.hpp.
| #define CPPAD_ASSERT_UNKNOWN | ( | exp | ) |
{ if( ! ( exp ) ) \
ErrorHandler::Call( \
false , \
__LINE__ , \
__FILE__ , \
#exp , \
"" ); \
}
Definition at line 110 of file cppad_assert.hpp.
1.6.1