Package edu.cmu.cs.fusion.test

Source Code of edu.cmu.cs.fusion.test.TestRelationshipTransferFunction

package edu.cmu.cs.fusion.test;

import edu.cmu.cs.fusion.FusionAnalysis;
import edu.cmu.cs.fusion.FusionException;
import edu.cmu.cs.fusion.alias.MayPointsToTransferFunctions;
import edu.cmu.cs.fusion.relationship.RelationshipTransferFunction;

public class TestRelationshipTransferFunction extends
    RelationshipTransferFunction {
 
  public TestRelationshipTransferFunction(FusionAnalysis relAnalysis) throws FusionException {
    super(relAnalysis, new MayPointsToTransferFunctions(null, null));
    types = new EqualityOnlyTypeHierarchy();
  }
}
TOP

Related Classes of edu.cmu.cs.fusion.test.TestRelationshipTransferFunction

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.