Mentions légales du service

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

- comment changes

parent bfd19451
No related branches found
No related tags found
No related merge requests found
...@@ -84,7 +84,7 @@ public class BasicAlignment implements Alignment { ...@@ -84,7 +84,7 @@ public class BasicAlignment implements Alignment {
/** /**
* This is the URI of the place from which the ontology has been loaded! * This is the URI of the place from which the ontology has been loaded!
* This is NOT the Ontology URI which can be obtained by * This is NOT the Ontology URI which can be obtained by
* onto1.getLogicalURI(); * getOntology1URI()
*/ */
protected URI uri1 = null; protected URI uri1 = null;
......
...@@ -76,7 +76,7 @@ public class OWLAPIAlignment extends BasicAlignment { ...@@ -76,7 +76,7 @@ public class OWLAPIAlignment extends BasicAlignment {
if ( onto1 instanceof OWLOntology && onto2 instanceof OWLOntology ){ if ( onto1 instanceof OWLOntology && onto2 instanceof OWLOntology ){
super.init( onto1, onto2, ontologies ); super.init( onto1, onto2, ontologies );
} else if ( onto1 instanceof URI && onto2 instanceof URI ) { } else if ( onto1 instanceof URI && onto2 instanceof URI ) {
// JE: This apprently contains the File and not the URI! // JE: This contains the File and not the URI!
setFile1( (URI)onto1 ); setFile1( (URI)onto1 );
setFile2( (URI)onto2 ); setFile2( (URI)onto2 );
try { try {
......
...@@ -90,8 +90,6 @@ public class StringDistAlignment extends DistanceAlignment implements AlignmentP ...@@ -90,8 +90,6 @@ public class StringDistAlignment extends DistanceAlignment implements AlignmentP
/* Processing */ /* Processing */
public void align( Alignment alignment, Parameters params ) throws AlignmentException { public void align( Alignment alignment, Parameters params ) throws AlignmentException {
loadInit( alignment ); loadInit( alignment );
//ignore alignment;
//double threshold = 1.; // threshold above which distances are to high
// Get function from params // Get function from params
String f = (String)params.getParameter("stringFunction"); String f = (String)params.getParameter("stringFunction");
......
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