Package edu.byu.ece.rapidSmith.timing

Examples of edu.byu.ece.rapidSmith.timing.TraceReportParser


  /**
   * Loads the timing report fileName into the delay and offset windows.
   * @param fileName Name of the TWR (timing report) file to load.
   */
  private void internalLoadDesignTimingInfo(String fileName){
    TraceReportParser parser = new TraceReportParser();
    parser.parseTWR(fileName, design);
    delays = parser.getPathDelays();
    offsets = parser.getPathOffsets();

    // Create 2 more tabs for timing information
    delayWindow = new FilterWindow(this, FilterType.DELAYS);
    offsetWindow = new FilterWindow(this, FilterType.OFFSETS);
    tabs.addTab(delayWindow, PATH_DELAYS);
View Full Code Here

TOP

Related Classes of edu.byu.ece.rapidSmith.timing.TraceReportParser

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.