?? tree.java
字號:
//Tree Node,store information about fitness and Root Node of An individualclass Tree { public TreeNode program; double standardizedFitness; double adjustedFitness; double normalizedFitness; int hits; Tree(TreeNode p) { program = (TreeNode)p.clone(); standardizedFitness = 0.0; adjustedFitness = 0.0; normalizedFitness = 0.0; hits = 0; } Tree copy() { Tree newInd = new Tree(this.program); newInd.standardizedFitness = this.standardizedFitness; newInd.adjustedFitness = this.adjustedFitness; newInd.normalizedFitness = this.normalizedFitness; newInd.hits = this.hits; return newInd; }}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -