[Javamatch-cvs] javamatch/src/net/sourceforge/javamatch/engine MatchEngine.java,1.6,1.7
Status: Pre-Alpha
Brought to you by:
iterson
From: Walter v. I. <it...@us...> - 2004-09-23 06:12:04
|
Update of /cvsroot/javamatch/javamatch/src/net/sourceforge/javamatch/engine In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8468 Modified Files: MatchEngine.java Log Message: Set default threshold to 0.01, to exclude total mismatches Index: MatchEngine.java =================================================================== RCS file: /cvsroot/javamatch/javamatch/src/net/sourceforge/javamatch/engine/MatchEngine.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** MatchEngine.java 20 Sep 2004 08:25:46 -0000 1.6 --- MatchEngine.java 23 Sep 2004 06:11:54 -0000 1.7 *************** *** 37,42 **** /** The threshold value, the minimum value that each sub-query shoud have, ! to be included in the match result */ ! private float threshold = 0f; /** --- 37,43 ---- /** The threshold value, the minimum value that each sub-query shoud have, ! to be included in the match result. The default threshold is 0.01, so ! total mismatches will not be part of the result */ ! private float threshold = 0.01f; /** *************** *** 125,129 **** /** * Sets the threshold value, the minimum value that each sub-query shoud have, ! * to be included in the match result * @param threshold the threshold, the minimum query result value before an * object is included in the MatchResult --- 126,131 ---- /** * Sets the threshold value, the minimum value that each sub-query shoud have, ! * to be included in the match result. The default threshold is 0.01, so ! * total mismatches will not be part of the result * @param threshold the threshold, the minimum query result value before an * object is included in the MatchResult |