![]() |
DuQuad
v1.0
Quadratic Programming Optimizations
|
#include <stdio.h>#include <stdlib.h>#include <math.h>#include <time.h>#include <errno.h>#include "typedefs.h"#include "qp_structs.h"Go to the source code of this file.
Macros | |
| #define | TRUE 1 |
| #define | FALSE 0 |
| #define | _DEBUG(fmt, args...) |
| #define | _DEBUG2(fmt, args...) |
| #define | YO printf("YOYO\n") |
| #define | ERROR(fmt) fprintf(stderr,"%s:%s:%d: "fmt, __FILE__, __FUNCTION__, __LINE__); |
| #define | _SDEBUG(fmt) |
Variables | |
| uint32_t | N |
| uint32_t | M |
| uint32_t | ALGORITHM |
Contains system libraries, mex libraries, global constants, global variables and some debugging macros.
Definition in file head.h.
| #define ERROR | ( | fmt | ) | fprintf(stderr,"%s:%s:%d: "fmt, __FILE__, __FUNCTION__, __LINE__); |