We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 696de13 commit 7c267ecCopy full SHA for 7c267ec
include/osp/bsp/model/MaxBspScheduleCS.hpp
@@ -66,7 +66,11 @@ class MaxBspScheduleCS : public BspScheduleCS<Graph_t> {
66
MaxBspScheduleCS(const BspScheduleCS<Graph_t> &schedule) : BspScheduleCS<Graph_t>(schedule) {}
67
MaxBspScheduleCS(BspScheduleCS<Graph_t> &&schedule) : BspScheduleCS<Graph_t>(std::move(schedule)) {}
68
69
- MaxBspScheduleCS(const MaxBspSchedule<Graph_t> &schedule) : BspScheduleCS<Graph_t>(std::move(schedule)) {
+ MaxBspScheduleCS(const MaxBspSchedule<Graph_t> &schedule) : BspScheduleCS<Graph_t>(schedule) {
70
+ this->setAutoCommunicationSchedule();
71
+ }
72
+
73
+ MaxBspScheduleCS(const MaxBspSchedule<Graph_t> &&schedule) : BspScheduleCS<Graph_t>(std::move(schedule)) {
74
this->setAutoCommunicationSchedule();
75
}
76
0 commit comments