package edu.neu.ccs.demeter.aplib;

import java.util.Collection;

/** A combination of two traversal strategies. */
public interface StrategyCombinationI extends StrategyI {
  /** Is this the intersection of two strategies? */
  boolean isStrategyIntersection();
  StrategyI getLeftStrategy();
  StrategyI getRightStrategy();
}

