format file forcing the left alignment

This commit is contained in:
Corentin Le Molgat
2020-10-29 14:25:39 +01:00
parent 3b3b8562ea
commit e4caaf96bc
281 changed files with 13003 additions and 13031 deletions

View File

@@ -153,7 +153,7 @@ void Tsp() {
}
}
// Solve, returns a solution if any (owned by RoutingModel).
const Assignment *solution = routing.SolveWithParameters(parameters);
const Assignment* solution = routing.SolveWithParameters(parameters);
if (solution != nullptr) {
// Solution cost.
LOG(INFO) << "Cost " << solution->ObjectiveValue();
@@ -178,7 +178,7 @@ void Tsp() {
}
} // namespace operations_research
int main(int argc, char **argv) {
int main(int argc, char** argv) {
absl::ParseCommandLine(argc, argv);
operations_research::Tsp();
return EXIT_SUCCESS;