Uses of Class
edu.mit.ll.group43.surfaceoptimization.network.dp.Subsequence

Packages that use Subsequence
edu.mit.ll.group43.surfaceoptimization.dp.factory.node   
edu.mit.ll.group43.surfaceoptimization.network.dp   
 

Uses of Subsequence in edu.mit.ll.group43.surfaceoptimization.dp.factory.node
 

Methods in edu.mit.ll.group43.surfaceoptimization.dp.factory.node with parameters of type Subsequence
 CPSNetworkNode SmartCPSNetworkNodeFactory.getCPSNetworkNode(Subsequence<Aircraft> seq)
           
 CPSNetworkNode LenientSmartCPSNetworkNodeFactory.getCPSNetworkNode(Subsequence<Aircraft> seq)
           
 CPSNetworkNode DefaultCPSNetworkNodeFactory.getCPSNetworkNode(Subsequence<Aircraft> seq)
           
 CPSNetworkNode CPSNetworkNodeFactory.getCPSNetworkNode(Subsequence<Aircraft> seq)
          Creates and returns a CPSNetworkNode that represents the given subsequence of Aircraft.
 

Uses of Subsequence in edu.mit.ll.group43.surfaceoptimization.network.dp
 

Methods in edu.mit.ll.group43.surfaceoptimization.network.dp that return Subsequence
 Subsequence<Aircraft> CPSNetworkNode.getAircraft()
          Get the subsequence of Aircraft this node represents
 

Methods in edu.mit.ll.group43.surfaceoptimization.network.dp that return types with arguments of type Subsequence
 java.util.TreeSet<Subsequence<java.lang.Integer>> SubsequenceGeneratorNode.getValidPaths()
           
 

Methods in edu.mit.ll.group43.surfaceoptimization.network.dp with parameters of type Subsequence
 void SubsequenceGeneratorNode.addValidPath(Subsequence<java.lang.Integer> path, int cps)
           
 int Subsequence.compareTo(Subsequence<T> s)
           
 

Method parameters in edu.mit.ll.group43.surfaceoptimization.network.dp with type arguments of type Subsequence
 void SubsequenceGeneratorNode.setValidPaths(java.util.TreeSet<Subsequence<java.lang.Integer>> validPaths)
           
 

Constructors in edu.mit.ll.group43.surfaceoptimization.network.dp with parameters of type Subsequence
CPSNetworkNode(Subsequence<Aircraft> aircraft)
          Constructs a CPS network node from the given sequence of aircraft.
LenientSmartCPSNetworkNode(Subsequence<Aircraft> aircraft)
           
SmartCPSNetworkNode(Subsequence<Aircraft> aircraft)