mentor/derived/BinpackAlgClass.i3


 Copyright (C) 1995, Digital Equipment Corporation.       
 All rights reserved.                                     
 See the file COPYRIGHT for a full description.           
                                                          
 Last modified on Thu Feb  9 08:47:37 PST 1995 by kalsow  
 Last modified on Wed Feb 17 16:44:58 PST 1993 by johnh   
      modified on Tue Jun  9 00:35:07 1992 by mhb         

********************************************************************

      *  NOTE: This file is generated automatically from the event
      *        definition file Binpack.evt.
      ********************************************************************


INTERFACE BinpackAlgClass;

<*NOWARN*> IMPORT IntList, BinpackAux, RealList, Algorithm;
<*NOWARN*> IMPORT AlgorithmClass;

<* PRAGMA LL *>

TYPE
  EventDataRec = RECORD
    stopAtSetup: BOOLEAN := TRUE;
    waitAtSetup: CARDINAL := 1;
    ctOfSetup: CARDINAL := 0;
    stopAtNewWeight: BOOLEAN := TRUE;
    waitAtNewWeight: CARDINAL := 1;
    ctOfNewWeight: CARDINAL := 0;
    stopAtPack: BOOLEAN := TRUE;
    waitAtPack: CARDINAL := 1;
    ctOfPack: CARDINAL := 0;
    stopAtIgnore: BOOLEAN := TRUE;
    waitAtIgnore: CARDINAL := 1;
    ctOfIgnore: CARDINAL := 0;
    stopAtProbe: BOOLEAN := TRUE;
    waitAtProbe: CARDINAL := 1;
    ctOfProbe: CARDINAL := 0;
  END;

  T <: Public;
  Public = Algorithm.T OBJECT
      eventDataRec: EventDataRec;

      METHODS
        feTryToDeleteWeight ( id: INTEGER);    <* LL = VBT.mu *>
        feTryToEmptyBin ( bin: INTEGER);    <* LL = VBT.mu *>
      END;

REVEAL
  Algorithm.T <: AlgorithmClass.T;

END BinpackAlgClass.