Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CoMISo
CoMISo
Commits
226b8f6a
Commit
226b8f6a
authored
Jan 04, 2016
by
David Bommes
Browse files
fixed debug output and const function type
parent
66142cfb
Pipeline
#674
passed with stage
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
NSolver/LeastSquaresProblem.cc
View file @
226b8f6a
...
...
@@ -199,7 +199,7 @@ store_result ( const double* _x )
bool
LeastSquaresProblem
::
constant_hessian
()
constant_hessian
()
const
{
for
(
unsigned
int
i
=
0
;
i
<
terms_
.
size
();
++
i
)
{
...
...
NSolver/LeastSquaresProblem.hh
View file @
226b8f6a
...
...
@@ -65,7 +65,7 @@ public:
virtual
void
store_result
(
const
double
*
_x
);
// advanced properties
virtual
bool
constant_hessian
();
virtual
bool
constant_hessian
()
const
;
// advanced usage
void
add_to_gradient
(
const
double
*
_x
,
double
*
_g
,
const
double
_c
);
...
...
Solver/MISolver.cc
View file @
226b8f6a
...
...
@@ -203,7 +203,7 @@ MISolver::solve_cplex(
}
catch
(
IloException
&
e
)
{
DEB_warning
(
2
,
"CPLEX Concert exception caught: "
<<
e
)
DEB_warning
(
2
,
"CPLEX Concert exception caught: "
<<
e
.
getMessage
()
)
}
catch
(...)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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