aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/dk.biks.bachelorizer/dk/biks/bachelorizer/Graph.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dk.biks.bachelorizer/dk/biks/bachelorizer/Graph.java b/src/dk.biks.bachelorizer/dk/biks/bachelorizer/Graph.java
index 23f4819..cebdb0e 100644
--- a/src/dk.biks.bachelorizer/dk/biks/bachelorizer/Graph.java
+++ b/src/dk.biks.bachelorizer/dk/biks/bachelorizer/Graph.java
@@ -262,10 +262,10 @@ public final class Graph extends Storage {
return bestPathCost;
}
- /// finds lengh of random path through disjoint module choices
+ /// find total weight of random path through disjoint choice sets
///
/// @param g sets of disjoint choices as a graph
- /// @return weight of final random path
+ /// @return total weight of random path
private static int solve(final AbstractGraph g) {
List<Vertex> path = new ArrayList<>(g.vertices());