We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a10ac5 commit e7acfbfCopy full SHA for e7acfbf
1 file changed
include/osp/bsp/scheduler/GreedySchedulers/GrowLocalMaxBsp.hpp
@@ -79,10 +79,7 @@ typename std::deque<VertexIdxT<GraphT>>::difference_type GrowLocalSSP<GraphT>::m
79
80
template <typename GraphT>
81
ReturnStatus GrowLocalSSP<GraphT>::ComputeSchedule(BspSchedule<GraphT> &schedule) {
82
- MaxBspSchedule<GraphT> tmpSched(schedule.GetInstance());
83
- ReturnStatus status = ComputeSchedule(tmpSched);
84
- schedule = tmpSched;
85
- return status;
+ return MaxBspScheduler<GraphT>::ComputeSchedule(schedule);
86
}
87
88
0 commit comments