#include <iostream>#include <iomanip>#include <cstring>#include <sys/types.h>#include <cassert>

Go to the source code of this file.
Namespaces | |
| namespace | concepts |
Geometries and material constants for eddy current problems. | |
Defines | |
| #define | __PRETTY_FUNCTION__ "(unknown)" |
| #define | DEBUG_FUNCTION __PRETTY_FUNCTION__ |
| #define | DEBUGL(doit, msg) |
| Debug Line. | |
| #define | DP(doit, msg, var) if(doit!=0) std::cout << msg << " " << var; |
| Debug Print. | |
| #define | DPL(doit, msg, var) if(doit!=0) std::cout << msg << " " << var << std::endl; |
| Debug Print Line. | |
Functions | |
| char * | concepts::shorten (const char *FILE) |
| Shortens the string to the given size. | |
| #define DP | ( | doit, | |
| msg, | |||
| var | |||
| ) | if(doit!=0) std::cout << msg << " " << var; |
Debug Print.
Prints a debugging message with a variable if the first parameter is true. At the end, the line is not wrapped.
| doit | The line is only printed if true. |
| msg | Some text |
| var | A variable |
| #define DPL | ( | doit, | |
| msg, | |||
| var | |||
| ) | if(doit!=0) std::cout << msg << " " << var << std::endl; |
Debug Print Line.
Prints a debugging message with a variable if the first parameter is true. At the end, the line is wrapped.
| doit | The line is only printed if true. |
| msg | Some text |
| var | A variable |