Package edu.gmu.seor.prognos.unbbayesplugin.jt.util

Examples of edu.gmu.seor.prognos.unbbayesplugin.jt.util.DoubleCollection


 
  public PMCPotentialTable() {
    int DEFAULT_SIZE = 30;
    modified = true;
    jpd = new DoubleCollection();
    meanMatrices = new ArrayList<MeanMatrix>();
    coVarMatrices = new ArrayList<CoVarMatrix>();
    for(int i=0;i<DEFAULT_SIZE;i++){
      meanMatrices.add(null);
      coVarMatrices.add(null);
    }
    dataCopy = new DoubleCollection();
    dataMarginal = new DoubleCollection();
    variableList = new ArrayList<Node>();
  }
View Full Code Here


 
  public GHKPotentialTable() {
    int DEFAULT_SIZE = 30;
    modified = true;
    gComponents = new DoubleCollection();
    hComponents = new ArrayList<HComponent>();
    kComponents = new ArrayList<KComponent>();
    for(int i=0;i<DEFAULT_SIZE;i++){
      hComponents.add(null);
      kComponents.add(null);
    }
    dataCopy = new DoubleCollection();
    dataMarginal = new DoubleCollection();
    variableList = new ArrayList<Node>();
  }
View Full Code Here

TOP

Related Classes of edu.gmu.seor.prognos.unbbayesplugin.jt.util.DoubleCollection

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.