Commit b9e907a9 authored by Davis King's avatar Davis King

clarified spec

parent af0cf84f
......@@ -28,7 +28,11 @@ namespace dlib
So this object lets you take advantage of a multi-core system. You should
set the num_threads parameter equal to the number of available cores. Note
that the separation_oracle() function which you provide must be thread safe
if you are to use this version of the structural_svm_problem.
if you are to use this version of the structural_svm_problem. In
particular, it must be safe to call separation_oracle() concurrently from
different threads. However, it is guaranteed that different threads will
never make concurrent calls to separation_oracle() using the same idx value
(i.e. the first argument).
!*/
typedef matrix_type_ matrix_type;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment