Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 7549ba3c authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

- cleaned up javadoc errors

parent dab1d58a
No related branches found
No related tags found
No related merge requests found
......@@ -110,8 +110,8 @@ public class SemPRecEvaluator extends PRecEvaluator implements Evaluator {
/** Creation
* Initiate Evaluator for precision and recall
* @param align1 : the reference alignment
* @param align2 : the alignment to evaluate
* @param al1 : the reference alignment
* @param al2 : the alignment to evaluate
**/
public SemPRecEvaluator( Alignment al1, Alignment al2) throws AlignmentException {
super( al1, al2 );
......@@ -175,9 +175,7 @@ public class SemPRecEvaluator extends PRecEvaluator implements Evaluator {
ArrayList<Alignment> allist = new ArrayList<Alignment>();
allist.add( al1 );
try {
IDDLReasoner iddlreasoner = new IDDLReasoner( allist );
iddlreasoner.setSemantics( semantics );
reasoner = iddlreasoner;
reasoner = new IDDLReasoner( allist, semantics );
} catch ( IDDLException idex ) {
throw new AlignmentException( "Cannot create IDDLReasoner", idex );
}
......@@ -396,14 +394,5 @@ public class SemPRecEvaluator extends PRecEvaluator implements Evaluator {
throw new AlignmentException( "Cannot convert correspondence "+corresp );
}
// load ontology for the IDDLReasoner
/*
public void loadOntology( IDDLReasoner reasoner, Object onto ) {
Ontology oo = (Ontology)onto;
URI f = oo.getFile();
if ( f == null ) f = oo.getURI();
reasoner.addOntology( f );
}*/
}
/*
* $Id$
*
* Copyright (C) INRIA, 2012
* Copyright (C) INRIA, 2012-2013
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
......@@ -66,8 +66,6 @@ import fr.inrialpes.exmo.align.parser.SyntaxElement.Constructor;
/**
* Translate correspondences into Graph Patterns
*
* @author
* @version
*/
// JE: create a string... problem with increment.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment