Ejemplo n.º 1
0
def module_order(self,state1, state2):
    """True if state1 is a subset of state2 """
    return implies_state(state1.value,state2.value,self.relations)
Ejemplo n.º 2
0
def module_order(self, state1, state2):
    """True if state1 is a subset of state2 """
    axioms = self.background_theory(state1.in_scope)
    return implies_state(state1.value, state2.value, axioms, self.relations)
Ejemplo n.º 3
0
def module_order(self,state1, state2):
    """True if state1 is a subset of state2 """
    axioms = self.background_theory(state1.in_scope) 
    return implies_state(state1.value,state2.value,axioms,self.relations)
Ejemplo n.º 4
0
def module_order(self, state1, state2):
    """True if state1 is a subset of state2 """
    return implies_state(state1.value, state2.value, self.relations)