예제 #1
0
파일: ivy_interp.py 프로젝트: ZZHGit/ivy
def module_order(self,state1, state2):
    """True if state1 is a subset of state2 """
    return implies_state(state1.value,state2.value,self.relations)
예제 #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)
예제 #3
0
파일: ivy_interp.py 프로젝트: jamella/ivy
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)
예제 #4
0
파일: ivy_interp.py 프로젝트: asyaf/ivy
def module_order(self, state1, state2):
    """True if state1 is a subset of state2 """
    return implies_state(state1.value, state2.value, self.relations)