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

📄 gatimer.java

📁 This program is using Genetic Algorithm to solve the Travlling Salesman Problem. It gives the bes
💻 JAVA
字号:
// DO NOT MODIFY THIS FILE



public class GATimer

{

	private long start_time = 0;

	public void start()

	{

		start_time = System.currentTimeMillis();

	}

	public long getTime()

	{

		return (System.currentTimeMillis() - start_time);

	}

}

⌨️ 快捷键说明

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