From: <lor...@us...> - 2013-05-04 11:07:14
|
Revision: 3946 http://sourceforge.net/p/dl-learner/code/3946 Author: lorenz_b Date: 2013-05-04 11:07:10 +0000 (Sat, 04 May 2013) Log Message: ----------- Improved script Latex output. Modified Paths: -------------- trunk/scripts/src/main/java/org/dllearner/scripts/OWLAxiomPatternDetectionEvaluation.java Modified: trunk/scripts/src/main/java/org/dllearner/scripts/OWLAxiomPatternDetectionEvaluation.java =================================================================== --- trunk/scripts/src/main/java/org/dllearner/scripts/OWLAxiomPatternDetectionEvaluation.java 2013-05-04 10:59:43 UTC (rev 3945) +++ trunk/scripts/src/main/java/org/dllearner/scripts/OWLAxiomPatternDetectionEvaluation.java 2013-05-04 11:07:10 UTC (rev 3946) @@ -77,7 +77,7 @@ public void run(Collection<OntologyRepository> repositories){ //analyze repositories -// analyze(repositories); + analyze(repositories); //create statistics for the repositories makeRepositoryStatistics(repositories); @@ -295,7 +295,7 @@ "(P.id=OP.pattern_id AND O.id=OP.ontology_id AND O.repository=? AND P.axiom_type=?) " + "GROUP BY P.id ORDER BY SUM(`OP`.`occurrences`) DESC LIMIT ?"); ps.setString(1, repository.getName()); - ps.setString(2, "RBox"); + ps.setString(2, axiomType.name()); ps.setInt(3, n); rs = ps.executeQuery(); while(rs.next()){ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |