DuplicateScopeTreesVisitor.java

Go to the documentation of this file.
00001 package edu.rice.cs.hpc.data.experiment.scope.visitors;
00002 
00003 import edu.rice.cs.hpc.data.experiment.scope.Scope;
00004 
00005 public class DuplicateScopeTreesVisitor extends BaseDuplicateScopeTreesVisitor {
00006 
00007     /****
00008      * Class for duplicating a tree, including its metric values 
00009      * 
00010      * @param newRoot
00011      */
00012     public DuplicateScopeTreesVisitor(Scope newRoot) {
00013         super(newRoot, 0);
00014     }
00015 
00016     
00017     public DuplicateScopeTreesVisitor(Scope newRoot, int offset) {
00018         super( newRoot, offset );
00019     }
00020     
00021     //@Override
00022     protected Scope findMatch(Scope parent, Scope toMatch) {
00023         // for duplication, everything matches
00024         return null;
00025     }
00026 
00027 }

Generated on 5 May 2015 for HPCVIEWER by  doxygen 1.6.1