两个向量误差的交叉函数

时间:2013-09-04 16:15:31

标签: java vector genetic-programming particle-swarm

我的功能的目标是在两个Vector之间使用1点交叉功能来获得一个新的混合“Son”矢量,其中包含来自第一个Vector的一些元素和一些来自第二个Vector的元素。

public Vector crossover(int Sol1,int Sol2){  
  int size;
  Vector sol1 = new Vector();
  Vector sol2 = new Vector();
  sol1 = (Vector) allpop.get(Sol1);
  sol2 = (Vector) allpop.get(Sol2);
  int crosspoint = (int) sol1.size()/2 ;
  Vector son =  new Vector();
      son= (Vector) sol1.clone() ;
      if (sol1.size() < sol2.size())
            size = sol1.size();
      else size = sol2.size();

  for(int j=(crosspoint-1);j<size;j++)
    son.set(j,sol2.get(j));
         return son;
                                          }

有时它运作良好,有时它会给我“java.lang.ArrayIndexOutOfBoundsException”错误..有些想法?

3 个答案:

答案 0 :(得分:0)

附加调试器,查看失败的值。当crosspoint为1或更小时,我谨慎地将sol1.size()等于零,因此索引j等于-1,这显然会引发异常。

答案 1 :(得分:0)

也许试试int crosspoint = (int)(sol1.size() / 2);

另外:crosspoint - 1需要>= 0

答案 2 :(得分:0)

已修复:)在这里我和你分享答案:)

    public Vector crossover(Vector sot1, Vector sot2) {
    Vector sol1;
    Vector sol2;
    sol1 = copi(sot1);
    sol2 = copi(sot2);
    sol1.removeAll(Collections.singleton(null));
    sol2.removeAll(Collections.singleton(null));
    // int crosspoint = (int) sol1.size()/2 ;
    Vector son = new Vector();
    boolean awal = true;
    int size;
    if (sol1.size() < sol2.size()) {
        size = sol1.size();
        son.setSize(sol1.size());
        Collections.copy(son, sol1);
    } else {
        size = sol2.size();
        son.setSize(sol2.size());
        Collections.copy(son, sol2);
        awal = false;
    }
    int crosspoint = (int) (Math.random() * ((size * 2) / 3)) + 1;
    System.out.println("cross point :" + crosspoint);
    int j = crosspoint;
    if (awal == true) {
        for (j = crosspoint; j < size; j++) {
            //son.removeElementAt(j);
            // son.add(j, sol2.get(j));
            son.set(j, (Capaciter_n_objet) sol2.get(j));
        }
    } else {
        for (j = crosspoint; j < size; j++) {
            // son.removeElementAt(j);
            //son.add(j, sol1.get(j));
            son.set(j, (Capaciter_n_objet) sol1.get(j));
        }
    }
    son.removeAll(Collections.singleton(null));
    correction(son);
    son.removeAll(Collections.singleton(null));
    /* for(int i=0;i<non_packed_objet.size();i++)
     * System.out.println("non packed object : "+non_packed_objet.get(i));*/
    return son;
}