Fix techtalk_scheduling.cs compilation
This commit is contained in:
@@ -64,7 +64,7 @@ public class SpeakerScheduling
|
||||
matching.AddArcWithCost(dummy, value - first_slot_, 0);
|
||||
}
|
||||
}
|
||||
if (matching.Solve() == LinearSumAssignment.OPTIMAL && matching.OptimalCost() < large) // No violated arcs.
|
||||
if (matching.Solve() == LinearSumAssignment.Status.OPTIMAL && matching.OptimalCost() < large) // No violated arcs.
|
||||
{
|
||||
for (int speaker = 0; speaker < number_of_variables; ++speaker)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user