From: <lor...@us...> - 2011-08-11 11:40:20
|
Revision: 3030 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=3030&view=rev Author: lorenz_b Date: 2011-08-11 11:40:11 +0000 (Thu, 11 Aug 2011) Log Message: ----------- Added missing dependency. Added axiom type to eval script. Modified Paths: -------------- trunk/interfaces/pom.xml trunk/scripts/src/main/java/org/dllearner/scripts/evaluation/EnrichmentEvaluation.java Modified: trunk/interfaces/pom.xml =================================================================== --- trunk/interfaces/pom.xml 2011-08-11 11:30:49 UTC (rev 3029) +++ trunk/interfaces/pom.xml 2011-08-11 11:40:11 UTC (rev 3030) @@ -131,13 +131,7 @@ <dependency> <groupId>org.dllearner</groupId> <artifactId>components-core</artifactId> - <exclusions> - <exclusion> - <groupId>org.slf4j</groupId> - <!-- Exclude Project-D from Project-B --> - <artifactId>slf4j-log4j12</artifactId> - </exclusion> - </exclusions> + </dependency> <!-- Modified: trunk/scripts/src/main/java/org/dllearner/scripts/evaluation/EnrichmentEvaluation.java =================================================================== --- trunk/scripts/src/main/java/org/dllearner/scripts/evaluation/EnrichmentEvaluation.java 2011-08-11 11:30:49 UTC (rev 3029) +++ trunk/scripts/src/main/java/org/dllearner/scripts/evaluation/EnrichmentEvaluation.java 2011-08-11 11:40:11 UTC (rev 3030) @@ -53,6 +53,7 @@ import org.dllearner.algorithms.properties.InverseFunctionalObjectPropertyAxiomLearner; import org.dllearner.algorithms.properties.IrreflexiveObjectPropertyAxiomLearner; import org.dllearner.algorithms.properties.ObjectPropertyDomainAxiomLearner; +import org.dllearner.algorithms.properties.ReflexiveObjectPropertyAxiomLearner; import org.dllearner.algorithms.properties.SubDataPropertyOfAxiomLearner; import org.dllearner.algorithms.properties.SubObjectPropertyOfAxiomLearner; import org.dllearner.algorithms.properties.ObjectPropertyRangeAxiomLearner; @@ -122,6 +123,7 @@ objectPropertyAlgorithms.add(SymmetricObjectPropertyAxiomLearner.class); objectPropertyAlgorithms.add(TransitiveObjectPropertyAxiomLearner.class); objectPropertyAlgorithms.add(IrreflexiveObjectPropertyAxiomLearner.class); + objectPropertyAlgorithms.add(ReflexiveObjectPropertyAxiomLearner.class); dataPropertyAlgorithms = new LinkedList<Class<? extends AxiomLearningAlgorithm>>(); dataPropertyAlgorithms.add(DisjointDataPropertyAxiomLearner.class); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |