}
}
Set<String> commonLabelSet = SetHelper.INSTANCE.setIntersection(firstGraph.getConceptLabels(),
secondGraph.getConceptLabels());
LexicalOrSynsetConceptComparator conceptComparator = new LexicalOrSynsetConceptComparator();
for (String label : commonLabelSet) {
for (IOntologyConcept first : firstGraph.getLabelToConcept().get(label)) {
for (IOntologyConcept second : secondGraph.getLabelToConcept().get(label)) {
if (tryToBind(conceptComparator, first, second, getBindFactors())) {
break;