remove support for the useAbs function;

add bounds support on the dice metric
This commit is contained in:
Greg Landrum
2007-10-05 15:35:11 +00:00
parent 418ea55cef
commit 93834a90bd
3 changed files with 15 additions and 12 deletions

View File

@@ -103,7 +103,8 @@ struct sparseIntVec_wrapper {
;
python::def("DiceSimilarity",&DiceSimilarity<IndexType>,
(python::args("v1"),python::args("v2"),python::args("useAbs")=false),
(python::args("v1"),python::args("v2"),
python::args("bounds")=0.0),
"return the Dice similarity between two vectors");
}