#include "clb/Algorithm/Sort.h" int CompareRectShortSide(const Rect &a, const Rect &b) { using namespace std; int smallerSideA = min(a.width, a.height); int smallerSideB = min(b.width, b.height); if (smallerSideA != smallerSideB) return clb::sort::TriCmp(smallerSideA, smallerSideB); // Tie-break on the larger side. int largerSideA = max(a.width, a.height); int largerSideB = max(b.widt
source not stored for this graph (policy: none)