linbox
|
Various utilities for debugging. More...
#include <iostream>
#include <sstream>
#include "linbox/util/error.h"
#include <vector>
#include <list>
#include <givaro/givprint.h>
Data Structures | |
class | PreconditionFailed |
A precondition failed. More... | |
class | Exception |
This is the exception class in LinBox. More... | |
class | algoException |
Algorithmic exception. More... | |
class | NotImplementedYetException |
Not implemented yet. More... | |
class | IrrecuperableException |
Something bad an unexpected happened. More... | |
class | BadInputException |
The input is not as expected. More... | |
Namespaces | |
LinBox | |
Namespace in which all linbox code resides. | |
Macros | |
#define | linbox_check(check) |
Check an assertion (à la std::assert ). More... | |
Various utilities for debugging.
#define linbox_check | ( | check | ) |
Check an assertion (à la std::assert
).
If in DEBUG mode, throws a PreconditionFailed exception. In REALEASE mode, nothing is checked.
check | assertion to be checked. |