⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mysolution.java

📁 一个java的tabu search算法框架
💻 JAVA
字号:
import org.coinor.opents.*;public class MySolution extends SolutionAdapter {    public int[] tour;        public MySolution(){} // Appease clone()        public MySolution( double[][] customers )    {        // Crudely initialize solution        tour = new int[ customers.length ];        for( int i = 0; i < customers.length; i++ )            tour[i] = i;    }   // end constructor            public Object clone()    {           MySolution copy = (MySolution)super.clone();        copy.tour = (int[])this.tour.clone();        return copy;    }   // end clone            public String toString()    {        StringBuffer s = new StringBuffer();                s.append( "Solution value: " + getObjectiveValue()[0] );        s.append( "Sequence: [ " );                for( int i = 0; i < tour.length - 1; i++ )            s.append( tour[i] ).append( ", " );                s.append( tour[ tour.length - 1 ] );        s.append( " ]" );                return s.toString();    }   // end toString    }   // end class MySolution

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -