4-variable-simplifier/simplifications.h
2025-06-28 08:25:30 -05:00

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