Started implementing output simplifications.

This commit is contained in:
2017-03-16 15:45:55 +01:00
parent f85236955f
commit fc538eb7fc
6 changed files with 185 additions and 26 deletions

View File

@@ -0,0 +1,21 @@
#ifndef __ANTHEM__SIMPLIFICATION_H
#define __ANTHEM__SIMPLIFICATION_H
#include <anthem/AST.h>
namespace anthem
{
////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Simplification
//
////////////////////////////////////////////////////////////////////////////////////////////////////
ast::Formula simplify(ast::Formula &&formula);
////////////////////////////////////////////////////////////////////////////////////////////////////
}
#endif