Beispiel #1
0
 protected boolean isHypernym(String term1, String term2) {
   List<POS> pts = POS.getAllPOS();
   for (POS pt : pts) if (isHypernym(term1, term2, pt)) return true;
   return false;
 }