Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Marco Ratto
dynare
Commits
108854a4
Verified
Commit
108854a4
authored
Oct 06, 2018
by
Stéphane Adjemian
Browse files
Bug fix. verbosity option was not honoured in simplex algorithm (8).
Thanks to Reuben for reporting.
parent
2d674e0c
Changes
1
Hide whitespace changes
Inline
Side-by-side
matlab/optimization/dynare_minimize_objective.m
View file @
108854a4
...
...
@@ -295,14 +295,14 @@ switch minimizer_algorithm
case
'InitialSimplexSize'
simplexOptions
.
delta_factor
=
options_list
{
i
,
2
};
case
'verbosity'
simplexOptions
.
verbos
e
=
options_list
{
i
,
2
};
simplexOptions
.
verbos
ity
=
options_list
{
i
,
2
};
otherwise
warning
([
'simplex: Unknown option ('
options_list
{
i
,
1
}
')!'
])
end
end
end
if
options_
.
silent_optimizer
simplexOptions
.
verbos
e
=
options_list
{
i
,
2
}
;
simplexOptions
.
verbos
ity
=
0
;
end
[
opt_par_values
,
fval
,
exitflag
]
=
simplex_optimization_routine
(
objective_function
,
start_par_value
,
simplexOptions
,
parameter_names
,
varargin
{:});
case
9
...
...
Write
Preview
Supports
Markdown
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