Package org.encog.ml.tree.traverse.tasks

Source Code of org.encog.ml.tree.traverse.tasks.TaskReplaceNode

/*
* Encog(tm) Core v3.3 - Java Version
* http://www.heatonresearch.com/encog/
* https://github.com/encog/encog-java-core
* Copyright 2008-2014 Heaton Research, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*  
* For more information on Heaton Research copyrights, licenses
* and trademarks visit:
* http://www.heatonresearch.com/copyright
*/
package org.encog.ml.tree.traverse.tasks;

import org.encog.ml.tree.TreeNode;
import org.encog.ml.tree.traverse.DepthFirstTraversal;
import org.encog.ml.tree.traverse.TreeTraversalTask;

/**
* Task to replace a node.
*/
public class TaskReplaceNode implements TreeTraversalTask {
 
  /**
   * Node to replace.
   */
  private final TreeNode replaceThisNode;
 
  /**
   * Node to replace with.
   */
  private final TreeNode replaceWith;
 
  /**
   * Are we done?
   */
  private boolean done;
 
  public TaskReplaceNode(TreeNode theReplaceThisNode, TreeNode theReplaceWith) {
    this.replaceThisNode = theReplaceThisNode;
    this.replaceWith = theReplaceWith;
    this.done = false;
  }
   
  /**
   * @return The node to replace.
   */
  public TreeNode getReplaceThisNode() {
    return replaceThisNode;
  }

  /**
   * @return What to replace with.
   */
  public TreeNode getReplaceWith() {
    return replaceWith;
  }


  /**
   * {@inheritDoc}
   */
  @Override
  public boolean task(TreeNode node) {
    if( done ) {
      return false;
    }
   
    for(int i=0;i<node.getChildNodes().size();i++) {
      TreeNode childNode = node.getChildNodes().get(i);
      if( childNode==replaceThisNode) {
        node.getChildNodes().set(i, this.replaceWith);
        done = true;
        return false;
      }
    }
    return true;
  }
 
  /**
   * Replace one node with another.
   * @param rootNode The root node.
   * @param replaceThisNode The node to replace.
   * @param replaceWith What to replace with.
   */
  public static void process(TreeNode rootNode, TreeNode replaceThisNode, TreeNode replaceWith) {
    TaskReplaceNode task = new TaskReplaceNode(replaceThisNode, replaceWith);
    DepthFirstTraversal trav = new DepthFirstTraversal();
    trav.traverse(rootNode, task);
  }

}
TOP

Related Classes of org.encog.ml.tree.traverse.tasks.TaskReplaceNode

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.