Class: Bio::AssemblyGraphAlgorithms::SingleCoherentPathsBetweenNodesFinder::DynamicProgrammingProblem
- Inherits:
-
Object
- Object
- Bio::AssemblyGraphAlgorithms::SingleCoherentPathsBetweenNodesFinder::DynamicProgrammingProblem
- Defined in:
- lib/assembly/single_coherent_paths_between_nodes.rb
Instance Attribute Summary collapse
-
#known_paths ⇒ Object
Returns the value of attribute known_paths.
-
#min_distance ⇒ Object
Returns the value of attribute min_distance.
Instance Method Summary collapse
-
#initialize ⇒ DynamicProgrammingProblem
constructor
A new instance of DynamicProgrammingProblem.
Constructor Details
#initialize ⇒ DynamicProgrammingProblem
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_paths ⇒ Object
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_distance ⇒ Object
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 |