best_tree.java

来自「Genetic Programming。GP算法在方程逼近求解上的应用。」· Java 代码 · 共 19 行

JAVA
19
字号



public class Best_Tree {
	
	public Tree tree=null;
	public int GenerationNumber;

	public RealPoint[] data=null;
	
	public Best_Tree(Tree syn,int GenerationNumber,RealPoint[] data){
		this.tree=syn;
		this.GenerationNumber=GenerationNumber;
	    this.data=data;
		
		}
	
	
	}

⌨️ 快捷键说明

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