- 更新日時:
- 2016/01/14 14:33:20 (9 年 前)
- ファイル:
-
- 1 変更
凡例:
- 変更なし
- 追加
- 削除
-
SPARQLBuilderWWW/src/java/org/biohackathon/SPARQLBuilder/OWL/OWLClassGraph.java
r259 r261 14 14 int nsteps = 4; 15 15 int limit = 100; 16 int th = 1;17 double cth = 1.0; // 0.0(no path) - 1.0(all paths)18 16 19 17 List<String> nodeType; 20 //ArrayList<HashSet<Integer>> connectionTable;21 18 String sparqlEndpoint; 22 19 Set<Integer> visited; … … 297 294 visited.addAll(nodes); 298 295 } 299 // cut visited 296 // cut visited 300 297 Iterator<Integer> nit = visited.iterator(); 301 298 while(nit.hasNext()){ … … 333 330 } 334 331 332 public List<String> getReachableClasses(){ 333 List<String> clURIs = new LinkedList<String>(); 334 if ( visited == null ){ 335 return null; 336 } 337 Iterator<Integer> vit = visited.iterator(); 338 while( vit.hasNext() ){ 339 Integer vn = vit.next(); 340 clURIs.add(labels.get(vn)); 341 } 342 return clURIs; 343 } 335 344 }