Mentions légales du service

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

- suppressed printout

parent 7a24ae61
No related branches found
No related tags found
No related merge requests found
...@@ -225,7 +225,7 @@ public class ExtPREvaluator extends BasicEvaluator implements Evaluator { ...@@ -225,7 +225,7 @@ public class ExtPREvaluator extends BasicEvaluator implements Evaluator {
} }
double val = Math.pow( symALPHA, val1 + val2 ); double val = Math.pow( symALPHA, val1 + val2 );
if ( withConfidence ) val *= 1. - Math.abs( c1.getStrength() - c2.getStrength() ); if ( withConfidence ) val *= 1. - Math.abs( c1.getStrength() - c2.getStrength() );
System.err.println( " => "+symALPHA+"^"+val1+"+"+val2+" * "+(1. - Math.abs( c1.getStrength() - c2.getStrength() ))+" = "+val ); //System.err.println( " => "+symALPHA+"^"+val1+"+"+val2+" * "+(1. - Math.abs( c1.getStrength() - c2.getStrength() ))+" = "+val );
// Here the measure should also take into account relations // Here the measure should also take into account relations
if ( val > sim ) sim = val; if ( val > sim ) sim = val;
} }
......
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