Update of /cvsroot/cweb/bigdata-rdf/src/test/com/bigdata/rdf/inf
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv20481/src/test/com/bigdata/rdf/inf
Modified Files:
TestFullForwardClosure.java
Log Message:
Added code (commented out) to load the word net schema + nouns data set in the full forward closure test.
Index: TestFullForwardClosure.java
===================================================================
RCS file: /cvsroot/cweb/bigdata-rdf/src/test/com/bigdata/rdf/inf/TestFullForwardClosure.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** TestFullForwardClosure.java 14 Apr 2007 13:33:49 -0000 1.7
--- TestFullForwardClosure.java 14 Apr 2007 13:49:58 -0000 1.8
***************
*** 83,89 ****
* hand-crafted data sets to test the rule implementations.
*/
store.loadData(new File("data/alibaba_v41.rdf"),"",false);
! // store.loadData(new File("data/nciOncology.owl"),"",false);
store.fullForwardClosure();
--- 83,97 ----
* hand-crafted data sets to test the rule implementations.
*/
+
store.loadData(new File("data/alibaba_v41.rdf"),"",false);
!
! store.loadData(new File("data/nciOncology.owl"),"",false);
+ /*
+ * Wordnet schema + nouns (two source files).
+ */
+ // store.loadData(new File("data/wordnet-20000620.rdfs"), "", false);
+ // store.loadData(new File("data/wordnet_nouns-20010201.rdf"), "", false);
+
store.fullForwardClosure();
|