Exemplo n.º 1
0
  private HNSet buildInputSet(int index) {

    return MethodsOverIndividuals.buildHNSet(
        geneticMiningMatrices.getStartMatrix().get(index),
        geneticMiningMatrices.getCausalMatrix().viewColumn(index),
        generator);
  }
Exemplo n.º 2
0
 private HNSet buildOutputSet(int index) {
   return MethodsOverIndividuals.buildHNSet(
       geneticMiningMatrices.getEndMatrix().get(index),
       geneticMiningMatrices.getCausalMatrix().viewRow(index),
       generator);
 }