22 lines
494 B
C++
22 lines
494 B
C++
#ifndef __ANTHEM__SIMPLIFICATION_H
|
|
#define __ANTHEM__SIMPLIFICATION_H
|
|
|
|
#include <anthem/AST.h>
|
|
|
|
namespace anthem
|
|
{
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Simplification
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void simplify(ast::Formula &formula);
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
}
|
|
|
|
#endif
|