View Javadoc

1   /*
2    * Created on Jan 15, 2005
3    *
4    * TODO To change the template for this generated file go to
5    * Window - Preferences - Java - Code Style - Code Templates
6    */
7   package net.sf.bddbddb.order;
8   
9   public class Discretization {
10      public double[] cutPoints;
11  
12      public TrialInstances[] buckets;
13  
14      public Discretization(double[] cutPoints, TrialInstances[] buckets) {
15          this.cutPoints = cutPoints;
16          this.buckets = buckets;
17      }
18  }