#ifndef __SAS__AXIOM_RULE_H #define __SAS__AXIOM_RULE_H #include #include namespace plasp { namespace sas { //////////////////////////////////////////////////////////////////////////////////////////////////// // // AxiomRule // //////////////////////////////////////////////////////////////////////////////////////////////////// struct AxiomRule { using Condition = AssignedVariable; using Conditions = std::vector; Conditions conditions; Condition postcondition; }; //////////////////////////////////////////////////////////////////////////////////////////////////// } } #endif