Skip to content

Commit a76c4a2

Browse files
Use stdout to help osp^2 handle missing schedulers gracefully
1 parent f2b0da3 commit a76c4a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/osp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ int main(int argc, char *argv[]) {
9999

100100
if (schedulersName[algorithmCounter].find("GrowLocal") != std::string::npos && bspInstance.HasAnyTypeRestrictions()) {
101101
schedulersFailed[algorithmCounter] = true;
102-
std::cerr << "Error: Algorithm" + algorithm.second.get_child("name").get_value<std::string>()
102+
std::cout << "Error: Algorithm" + algorithm.second.get_child("name").get_value<std::string>()
103103
+ " skipped, since GrowLocal cannot handle heterogeneous problem instances." << std::endl;
104104
algorithmCounter++;
105105
continue;

0 commit comments

Comments
 (0)