Uses of Class
mauda.operation.SubOperation

Packages that use SubOperation
mauda Provides important base-classes and interfaces used by the whole MAUDA-Project. 
mauda.feedback Provides feedback-specific classes, used by the different feedback-types. 
mauda.operation Provides classes, to store operations and suboperations. 
mauda.plugin Provides common plug-in-specific classes and interfaces, used by implemented plug-ins. 
mauda.plugin.binqueue Classes for the binomial-queue plug-in. 
mauda.plugin.fibheap Classes and interfaces for the fibonacci-heap plug-in. 
 

Uses of SubOperation in mauda
 

Methods in mauda that return SubOperation
 SubOperation OperationRecorder.getCorrectSubOperation(int opnr, int subopnr)
          Gets the correct subopnr'th suboperation of the opnr'th operation.
 SubOperation OperationRecorder.getSubOperation(int opnr, int subopnr)
          Gets the present subopnr'th suboperation of the opnr'th operation.
 

Uses of SubOperation in mauda.feedback
 

Methods in mauda.feedback that return SubOperation
 SubOperation FeedbackObject.getCorrectSubOperation()
          Gets the correct suboperation the feedback belongs to
 SubOperation FeedbackObject.getSubOperation()
           
 

Methods in mauda.feedback with parameters of type SubOperation
 void FeedbackObject.setCorrectSubOperation(SubOperation subop)
          Sets the correct suboperation the feedback belongs to
 void FeedbackObject.setSubOperation(SubOperation subop)
           
 

Uses of SubOperation in mauda.operation
 

Methods in mauda.operation that return SubOperation
 SubOperation SubOperationQueue.get(int index)
          Gets a suboperation at the specified index
 

Methods in mauda.operation with parameters of type SubOperation
 void Operation.add(SubOperation so)
          Adds a SubOperation to the SubOperationQueue
 void SubOperationQueue.add(SubOperation operation)
          Adds a SubOperation
 

Uses of SubOperation in mauda.plugin
 

Methods in mauda.plugin with parameters of type SubOperation
 void OperationExecuter.execute(SubOperation op, java.lang.Object o)
          Executes an SubOperation on the current data-structure
 

Uses of SubOperation in mauda.plugin.binqueue
 

Methods in mauda.plugin.binqueue with parameters of type SubOperation
 void BinQueueOperationExecuter.execute(SubOperation op, java.lang.Object o)
           
 

Uses of SubOperation in mauda.plugin.fibheap
 

Methods in mauda.plugin.fibheap with parameters of type SubOperation
 void FibHeap.add(SubOperation so)
           
 void FibHeapDS.add(SubOperation so)
           
 void FibHeapOperationExecuter.execute(SubOperation op, java.lang.Object o)