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
42d6520c
Commit
42d6520c
authored
Mar 03, 2017
by
Davis King
Browse files
Added missing const
parent
5ea4d11a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
dlib/optimization/optimization_solve_qp_using_smo.h
dlib/optimization/optimization_solve_qp_using_smo.h
+2
-2
dlib/optimization/optimization_solve_qp_using_smo_abstract.h
dlib/optimization/optimization_solve_qp_using_smo_abstract.h
+2
-2
No files found.
dlib/optimization/optimization_solve_qp_using_smo.h
View file @
42d6520c
...
...
@@ -415,8 +415,8 @@ namespace dlib
const
matrix_exp
<
EXP1
>&
_Q
,
const
matrix_exp
<
EXP2
>&
_b
,
matrix
<
T
,
NR
,
NC
,
MM
,
L
>&
alpha
,
matrix
<
T
,
NR
,
NC
,
MM
,
L
>&
lower
,
matrix
<
T
,
NR
,
NC
,
MM
,
L
>&
upper
,
const
matrix
<
T
,
NR
,
NC
,
MM
,
L
>&
lower
,
const
matrix
<
T
,
NR
,
NC
,
MM
,
L
>&
upper
,
T
eps
,
unsigned
long
max_iter
)
...
...
dlib/optimization/optimization_solve_qp_using_smo_abstract.h
View file @
42d6520c
...
...
@@ -124,8 +124,8 @@ namespace dlib
const
matrix_exp
<
EXP1
>&
Q
,
const
matrix_exp
<
EXP2
>&
b
,
matrix
<
T
,
NR
,
NC
,
MM
,
L
>&
alpha
,
matrix
<
T
,
NR
,
NC
,
MM
,
L
>&
lower
,
matrix
<
T
,
NR
,
NC
,
MM
,
L
>&
upper
,
const
matrix
<
T
,
NR
,
NC
,
MM
,
L
>&
lower
,
const
matrix
<
T
,
NR
,
NC
,
MM
,
L
>&
upper
,
T
eps
,
unsigned
long
max_iter
);
...
...
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