チェンジセット 34 : BH13SPARQLBuilder/src
- 更新日時:
- 2014/01/31 10:35:01 (11 年 前)
- ファイル:
-
- 1 変更
凡例:
- 変更なし
- 追加
- 削除
-
BH13SPARQLBuilder/src/org/biohackathon/SPARQLBuilder/OWL/OWLClassGraph.java
r32 r34 16 16 int nsteps; 17 17 int limit; 18 int th; 18 19 19 20 public class LinkAndPath{ … … 34 35 nsteps = 2; 35 36 limit = 1000; 37 th = 0; 36 38 } 37 39 … … 93 95 while ( lit.hasNext() ){ 94 96 LinkAndPath crrlp = lit.next(); 95 if ( crrlp.classLink.getLinkedClassURI().equals(endClass) ){ continue; }96 97 ClassLink[] classLinks = null; 97 98 // Mode … … 106 107 if ( classLinks[j].getLinkedClassURI().equals(endClass) ){ 107 108 paths.add(new LinkedList<>(crrpath)); 109 continue; 110 } 111 if ( countLinks == true && classLinks[j].getNumOfLinks() <= th){ 112 continue; 108 113 } 109 114 nextlp.add(new LinkAndPath(classLinks[j],crrpath));