17 lines
214 B
C
17 lines
214 B
C
|
|
#ifndef STRUCT_SIMPLIFICATIONS
|
|
#define STRUCT_SIMPLIFICATIONS
|
|
|
|
#include "defines.h"
|
|
|
|
#include "expr.h"
|
|
|
|
struct simplifications
|
|
{
|
|
struct row {
|
|
struct expr data[N];
|
|
} main, with_vars[N];
|
|
};
|
|
|
|
#endif
|
|
|