package ast.representation;

/**
 * Interface representing different strategies.
 * 
 * @author Juri Memmert and Gary T. Leavens
 * @since Mar 2, 2006
 *
 */
public interface Strategy
{
    /**
     * @return Some number, based on the specific implementation of the strategy.
     */
    public double apply(long i);
}
