Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-expression-widget@113656 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2015-03-18 17:34:01 +00:00
parent 162d55adea
commit 7f5271c519
1 changed files with 11 additions and 11 deletions

View File

@ -36,20 +36,20 @@ public class ThresholdStore {
public static ArrayList<Threshold> thresholdsSimilarity = new ArrayList<Threshold>() {
private static final long serialVersionUID = -6559885743626876431L;
{
add(new Threshold(1,0.0f,"0"));
add(new Threshold(2,0.1f,"0.1"));
add(new Threshold(3,0.2f,"0.2"));
add(new Threshold(4,0.3f,"0.3"));
add(new Threshold(5,0.4f,"0.4"));
add(new Threshold(6,0.5f,"0.5"));
add(new Threshold(7,0.6f,"0.6"));
add(new Threshold(8,0.7f,"0.7"));
add(new Threshold(9,0.8f,"0.8"));
add(new Threshold(10,0.9f,"0.9"));
add(new Threshold(1,0.1f,"0.1"));
add(new Threshold(2,0.2f,"0.2"));
add(new Threshold(3,0.3f,"0.3"));
add(new Threshold(4,0.4f,"0.4"));
add(new Threshold(5,0.5f,"0.5"));
add(new Threshold(6,0.6f,"0.6"));
add(new Threshold(7,0.7f,"0.7"));
add(new Threshold(8,0.8f,"0.8"));
add(new Threshold(9,0.9f,"0.9"));
}};
public static Threshold defaultThresholdSimilarity(){
return new Threshold(9,0.8f,"0.8");
return new Threshold(8,0.8f,"0.8");
}