#ifndef __ANTHEM__SIMPLIFICATION_H #define __ANTHEM__SIMPLIFICATION_H #include namespace anthem { //////////////////////////////////////////////////////////////////////////////////////////////////// // // Simplification // //////////////////////////////////////////////////////////////////////////////////////////////////// enum class SimplificationResult { Simplified, Unchanged, }; //////////////////////////////////////////////////////////////////////////////////////////////////// void simplify(ast::Formula &formula); //////////////////////////////////////////////////////////////////////////////////////////////////// } #endif