reset & initialise methods for SMT Checker; fixed some typos for rsLTL

This commit is contained in:
Artur Meski
2017-03-12 23:33:04 +01:00
parent 05557440a0
commit 7f6ea619b2
4 changed files with 40 additions and 12 deletions

View File

@@ -24,7 +24,7 @@ class rsLTL_Encoder(object):
if bag_formula.f_type == BagDesc_oper.l_and:
return And(self.encode_bag(bag_formula.left_operand, level, context),
self.encode_bag(bag_formula.left_.right_operand, level, context))
self.encode_bag(bag_formula.right_operand, level, context))
if bag_formula.f_type == BagDesc_oper.l_or:
return Or(self.encode_bag(bag_formula.left_operand, level, context),