From 7640decee912e107f868012246fdf5f33c29d498 Mon Sep 17 00:00:00 2001 From: Davis King Date: Fri, 9 Aug 2013 11:22:03 -0400 Subject: [PATCH] clarified spec --- dlib/optimization/max_cost_assignment_abstract.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dlib/optimization/max_cost_assignment_abstract.h b/dlib/optimization/max_cost_assignment_abstract.h index 524c182e6..1162690c4 100644 --- a/dlib/optimization/max_cost_assignment_abstract.h +++ b/dlib/optimization/max_cost_assignment_abstract.h @@ -50,6 +50,9 @@ namespace dlib - The elements of A are unique. That is, there aren't any elements of A which are equal. - A.size() == cost.nr() + + - This function implements the O(N^3) version of the Hungarian algorithm + where N is the number of rows in the cost matrix. !*/ // ----------------------------------------------------------------------------------------