Uses of Class
de.upb.swtpra05.group03.shuttle.util.EfficientBitSet

Packages that use EfficientBitSet
de.upb.swtpra05.group03.plugin   
de.upb.swtpra05.group03.shuttle   
de.upb.swtpra05.group03.shuttle.util   
 

Uses of EfficientBitSet in de.upb.swtpra05.group03.plugin
 

Fields in de.upb.swtpra05.group03.plugin declared as EfficientBitSet
private  EfficientBitSet DataHolder.bS
          No comment provided by developer, please add a comment to improve documentation.
 

Uses of EfficientBitSet in de.upb.swtpra05.group03.shuttle
 

Fields in de.upb.swtpra05.group03.shuttle declared as EfficientBitSet
protected  EfficientBitSet Execution.evaluatedOrders
          Collection which holds all order ids the Execution evaluated
protected  EfficientBitSet Execution.assignedOrders
          Collection which holds all order ids which were assigned to the shuttle
protected  EfficientBitSet Execution.loadedOrders
          Collection which holds all order ids the shuttle has currently loaded
private  EfficientBitSet Execution.wakeUpTimes
           
 

Methods in de.upb.swtpra05.group03.shuttle that return EfficientBitSet
 EfficientBitSet Execution.getLoadedOrders()
           
 EfficientBitSet Execution.getAssignedOrders()
           
 EfficientBitSet Execution.getEvaluatedOrders()
           
 EfficientBitSet GraphEdge.getFinancedBy()
           
 EfficientBitSet ExecutionInterface.getLoadedOrders()
          Returns the current load order ids as bit set.
 EfficientBitSet ExecutionInterface.getAssignedOrders()
          Returns the current assigned order ids as bit set.
 EfficientBitSet ExecutionInterface.getEvaluatedOrders()
          Returns the evaluated order ids as bit set.
 

Methods in de.upb.swtpra05.group03.shuttle with parameters of type EfficientBitSet
 void GraphEdge.setFinancedByCollection(EfficientBitSet bs)
           
 

Uses of EfficientBitSet in de.upb.swtpra05.group03.shuttle.util
 

Methods in de.upb.swtpra05.group03.shuttle.util with parameters of type EfficientBitSet
 boolean EfficientBitSet.intersects(EfficientBitSet set)
          Returns true if the specified EfficientBitSet has any bits set to true that are also set to true in this EfficientBitSet.
 void EfficientBitSet.and(EfficientBitSet set)
          Performs a logical AND of this target bit set with the argument bit set.
 void EfficientBitSet.or(EfficientBitSet set)
          Performs a logical OR of this bit set with the bit set argument.
 void EfficientBitSet.xor(EfficientBitSet set)
          Performs a logical XOR of this bit set with the bit set argument.
 void EfficientBitSet.andNot(EfficientBitSet set)
          Clears all of the bits in this BitSet whose corresponding bit is set in the specified BitSet.