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

📄 gp_state.java

📁 Genetic Programming。GP算法在方程逼近求解上的应用。
💻 JAVA
字号:


public class GP_State
{
	

        public static final int IDLE = 0;
        public static final int STARTED = 1;
        public static final int STOPPED = 2;

        private int state = IDLE;

        //返回运行状态
        public int getState() 
        {
                return state;
        }
        
        public void setState(int state)
        {
        	this.state=state;
        	
        	
        	}
	public GP_State()
	{
		this(IDLE);
		}
	
	public GP_State(int state)
	{
		this.state=state;
		
		}
	
	
	
	
	
	
	
	}

⌨️ 快捷键说明

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