Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
f6ad191c
Commit
f6ad191c
authored
Aug 01, 2015
by
Davis King
Browse files
Clarified spec
parent
0c561f2b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
dlib/optimization/optimization_trust_region_abstract.h
dlib/optimization/optimization_trust_region_abstract.h
+5
-4
No files found.
dlib/optimization/optimization_trust_region_abstract.h
View file @
f6ad191c
...
@@ -40,10 +40,11 @@ namespace dlib
...
@@ -40,10 +40,11 @@ namespace dlib
Minimize: f(p) == 0.5*trans(p)*B*p + trans(g)*p
Minimize: f(p) == 0.5*trans(p)*B*p + trans(g)*p
subject to the following constraint:
subject to the following constraint:
- length(p) <= radius
- length(p) <= radius
- returns the number of iterations performed. If this method fails to
- returns the number of iterations performed. If this method fails to converge
converge to eps accuracy then the number returned will be max_iter+1.
to eps accuracy then the number returned will be max_iter+1.
- if this function returns 0 or 1 then we are not hitting the radius bound.
- if (this function didn't terminate due to hitting the max_iter iteration limit) then
Otherwise, the radius constraint is active and std::abs(length(#p)-radius) <= eps.
- if this function returns 0 or 1 then we are not hitting the radius bound Otherwise,
the radius constraint is active and std::abs(length(#p)-radius)/radius <= eps.
!*/
!*/
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment