Uses of Interface
uk.ed.inf.bitstring.IBitString

Packages that use IBitString
uk.ed.inf.bitstring   
uk.ed.inf.graph.state   
 

Uses of IBitString in uk.ed.inf.bitstring
 

Classes in uk.ed.inf.bitstring that implement IBitString
 class BitString
           
 

Methods in uk.ed.inf.bitstring that return IBitString
 IBitString IBitString.and(BitString set)
           
 IBitString BitString.and(BitString set)
           
 IBitString IBitString.andNot(BitString set)
           
 IBitString BitString.andNot(BitString set)
           
 IBitString IBitString.get(int fromIndex, int toIndex)
           
 IBitString BitStringBuffer.get(int fromIndex, int toIndex)
           
 IBitString BitString.get(int fromIndex, int toIndex)
           
 IBitString IBitString.or(BitString set)
           
 IBitString BitString.or(BitString set)
           
 IBitString IBitString.xor(BitString set)
           
 IBitString BitString.xor(BitString set)
           
 

Constructors in uk.ed.inf.bitstring with parameters of type IBitString
BitStringBuffer(IBitString bitString)
           
 

Uses of IBitString in uk.ed.inf.graph.state
 

Methods in uk.ed.inf.graph.state that return IBitString
 IBitString IGraphState.getEdgeStates()
          Get the states of the edges as a bit string: [true => exists, false => removed].
 IBitString GeneralGraphState.getEdgeStates()
           
 IBitString IGraphState.getNodeStates()
          Get the states of the nodes as a bit string: [true => exists, false => removed].
 IBitString GeneralGraphState.getNodeStates()
           
 

Constructors in uk.ed.inf.graph.state with parameters of type IBitString
GeneralGraphState(IBasicGraph<N,E> graphToSave, IBitString nodeStates, IBitString edgeStates)