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

📄 indexedbvalue.java

📁 用于求解TSP(Traveling salesman problem
💻 JAVA
字号:
/**
 * Description: provide a boolean value with an index
 *
 * @ Author        Create/Modi     Note
 * Xiaofeng Xie    Apr 18, 2005     xiaofengxie@tsinghua.org.cn
 */

package Global.basic;

public class IndexedBValue {
  public int index = 0;                 //the index
  public boolean value = true;          //The value

  public IndexedBValue() {}

  public IndexedBValue(int i, boolean v) {
    index = i;
    value = v;
  }
}

⌨️ 快捷键说明

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