//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\
// PLEASE DO NOT EDIT WITHOUT THE EXPLICIT CONSENT OF THE AUTHOR! \\
//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\

package ilog.language.design.base;

/**
 * @version     Last modified on Tue Apr 02 20:42:42 2002 by hak
 * @author      <a href="mailto:hak@ilog.fr">Hassan A&iuml;t-Kaci</a>
 * @copyright   &copy; 2002 <a href="http://www.ilog.fr/">ILOG, S.A.</a>
 */

abstract public class ApplyCollectionHomomorphism extends Instruction
{
  protected Instruction _tally;

  protected  ApplyCollectionHomomorphism (Instruction tally)
    {
      _tally = tally;
    }

  public final String toString ()
    {
      return name() + "(" + _tally + ")";
    }
}
