15 lines
167 B
C
15 lines
167 B
C
|
|
#ifndef STRUCT_SIMPLIFICATIONS
|
|
#define STRUCT_SIMPLIFICATIONS
|
|
|
|
#include "defines.h"
|
|
|
|
#include "expr.h"
|
|
|
|
struct simplifications
|
|
{
|
|
struct expr data[N];
|
|
};
|
|
|
|
#endif
|
|
|