forked from google/or-tools
-
Notifications
You must be signed in to change notification settings - Fork 9
/
course_scheduling_run.cc
110 lines (94 loc) · 3.76 KB
/
course_scheduling_run.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
// Copyright 2010-2024 Google LLC
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// This file implements the main function for the Course Scheduling solver. It
// reads the problem specification from an input file specified via command-line
// flags, and prints the time slots for each course.
//
// Example usage:
// ./course_scheduling_run --input_file=testdata/my_input_proto.textproto
#include <cstdlib>
#include "examples/cpp/course_scheduling.h"
#include "ortools/base/commandlineflags.h"
#include "ortools/base/helpers.h"
#include "ortools/base/init_google.h"
#include "ortools/base/options.h"
#include "ortools/base/timer.h"
#include "ortools/scheduling/course_scheduling.pb.h"
ABSL_FLAG(std::string, input, "",
"Input file containing a CourseSchedulingModel in text format.");
namespace operations_research {
void Main() {
CourseSchedulingModel input;
const auto proto_status =
file::GetTextProto(absl::GetFlag(FLAGS_input), &input, file::Defaults());
if (!proto_status.ok()) {
LOG(ERROR) << proto_status.message();
return;
}
CourseSchedulingSolver solver;
WallTimer timer;
timer.Start();
const CourseSchedulingResult result = solver.Solve(input);
timer.Stop();
LOG(INFO) << "Solver result status: "
<< CourseSchedulingResultStatus_Name(result.solver_status()) << ". "
<< result.message();
for (const ClassAssignment& class_assignment : result.class_assignments()) {
const int course_index = class_assignment.course_index();
const int section_number = class_assignment.section_number();
int teacher_index = 0;
const Course& course = input.courses(course_index);
int sections = 0;
for (int section_index = 0;
section_index < course.teacher_section_counts_size();
++section_index) {
sections += course.teacher_section_counts(section_index);
if (section_number < sections) {
teacher_index = course.teacher_indices(section_index);
break;
}
}
LOG(INFO) << course.display_name();
LOG(INFO) << " Section: " << section_number;
LOG(INFO) << " Teacher: " << input.teachers(teacher_index).display_name();
for (int i = 0; i < class_assignment.time_slots_size(); ++i) {
if (input.rooms_size() > 0) {
LOG(INFO)
<< " Scheduled for time slot " << class_assignment.time_slots(i)
<< " in room "
<< input.rooms(class_assignment.room_indices(i)).display_name();
} else {
LOG(INFO) << " Scheduled for time slot "
<< class_assignment.time_slots(i);
}
}
}
for (const StudentAssignment& student_assignment :
result.student_assignments()) {
const int student_index = student_assignment.student_index();
LOG(INFO) << input.students(student_index).display_name();
for (int i = 0; i < student_assignment.course_indices_size(); ++i) {
LOG(INFO)
<< " "
<< input.courses(student_assignment.course_indices(i)).display_name()
<< " " << student_assignment.section_indices(i);
}
}
LOG(INFO) << "Solved model in " << timer.GetDuration();
}
} // namespace operations_research
int main(int argc, char** argv) {
InitGoogle(argv[0], &argc, &argv, /*remove_flags=*/true);
operations_research::Main();
return EXIT_SUCCESS;
}