Class: Bio::AssemblyGraphAlgorithms::SingleCoherentPathsBetweenNodesFinder::DynamicProgrammingProblem

Inherits:
Object
  • Object
show all
Defined in:
lib/assembly/single_coherent_paths_between_nodes.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeDynamicProgrammingProblem

Returns a new instance of DynamicProgrammingProblem.



490
491
492
# File 'lib/assembly/single_coherent_paths_between_nodes.rb', line 490

def initialize
  @known_paths = []
end

Instance Attribute Details

#known_pathsObject

Returns the value of attribute known_paths.



488
489
490
# File 'lib/assembly/single_coherent_paths_between_nodes.rb', line 488

def known_paths
  @known_paths
end

#min_distanceObject

Returns the value of attribute min_distance.



488
489
490
# File 'lib/assembly/single_coherent_paths_between_nodes.rb', line 488

def min_distance
  @min_distance
end