fixed indentation problem
This commit is contained in:
@ -129,15 +129,15 @@ class Correspondence(WorkspaceStructure):
|
|||||||
def updateExternalStrength(self):
|
def updateExternalStrength(self):
|
||||||
self.externalStrength = self.support()
|
self.externalStrength = self.support()
|
||||||
|
|
||||||
def internallyCoherent(self):
|
def internallyCoherent(self):
|
||||||
"""Whether any pair of relevant distinguishing mappings support each other"""
|
"""Whether any pair of relevant distinguishing mappings support each other"""
|
||||||
mappings = self.relevantDistinguishingConceptMappings()
|
mappings = self.relevantDistinguishingConceptMappings()
|
||||||
for i in range(0, len(mappings)):
|
for i in range(0, len(mappings)):
|
||||||
for j in range(0, len(mappings)):
|
for j in range(0, len(mappings)):
|
||||||
if i != j:
|
if i != j:
|
||||||
if mappings[i].supports(mappings[j]):
|
if mappings[i].supports(mappings[j]):
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def slippages(self):
|
def slippages(self):
|
||||||
mappings = [m for m in self.conceptMappings if m.slippage()]
|
mappings = [m for m in self.conceptMappings if m.slippage()]
|
||||||
|
|||||||
Reference in New Issue
Block a user