Package edu.byu.ece.rapidSmith.router

Examples of edu.byu.ece.rapidSmith.router.Node


  public Node createNode(Tile currTile){
    return new Node(getTile(currTile), wire, null, 0, isPIP);
  }
 
  public Node createNode(Tile currTile, Node parent){
    return new Node(getTile(currTile), wire, parent, 0, isPIP);
  }
View Full Code Here

TOP

Related Classes of edu.byu.ece.rapidSmith.router.Node

Copyright © 2018 www.massapicom. 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.