Skip to content

Commit

Permalink
[CP-SAT] internal protocol improvements; bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lperron committed Sep 3, 2024
1 parent b093e98 commit 76f2f4c
Show file tree
Hide file tree
Showing 35 changed files with 1,167 additions and 328 deletions.
4 changes: 2 additions & 2 deletions ortools/sat/2d_packing_brute_force.cc
Original file line number Diff line number Diff line change
Expand Up @@ -681,8 +681,8 @@ BruteForceResult BruteForceOrthogonalPacking(
for (const PermutableItem& item : items) {
result[item.index] = item.position;
}
VLOG_EVERY_N_SEC(3, 3) << "Found a feasible packing by brute force. Dot:\n "
<< RenderDot(bounding_box_size, result);
// VLOG_EVERY_N_SEC(3, 3) << "Found a feasible packing by brute force. Dot:\n "
// << RenderDot(bounding_box_size, result);
return {.status = BruteForceResult::Status::kFoundSolution,
.positions_for_solution = result};
}
Expand Down
Loading

0 comments on commit 76f2f4c

Please sign in to comment.