From 152b3d0b6c07d4dd491e4033bd321c1ef32e277e Mon Sep 17 00:00:00 2001 From: "lperron@google.com" Date: Wed, 18 Jul 2012 00:35:11 +0000 Subject: [PATCH] earlyness -> earliness --- examples/cpp/jobshop_earlytardy.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/cpp/jobshop_earlytardy.cc b/examples/cpp/jobshop_earlytardy.cc index 36f0fea630..e72438e90e 100644 --- a/examples/cpp/jobshop_earlytardy.cc +++ b/examples/cpp/jobshop_earlytardy.cc @@ -12,9 +12,9 @@ // limitations under the License. // // This model implements a simple jobshop problem with -// earlyness-tardiness costs. +// earliness-tardiness costs. // -// A earlyness-tardinessjobshop is a standard scheduling problem where +// A earliness-tardinessjobshop is a standard scheduling problem where // you must schedule a set of jobs on a set of machines. Each job is // a sequence of tasks (a task can only start when the preceding task // finished), each of which occupies a single specific machine during @@ -60,7 +60,7 @@ DEFINE_string( DEFINE_int32(machine_count, 10, "Machine count"); DEFINE_int32(job_count, 10, "Job count"); DEFINE_int32(max_release_date, 0, "Max release date"); -DEFINE_int32(max_early_cost, 0, "Max earlyness weight"); +DEFINE_int32(max_early_cost, 0, "Max earliness weight"); DEFINE_int32(max_tardy_cost, 3, "Max tardiness weight"); DEFINE_int32(max_duration, 10, "Max duration of a task"); DEFINE_int32(scale_factor, 130, "Scale factor (in percent)");