Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dynare
Manage
Activity
Members
Labels
Plan
Issues
131
Issue boards
Milestones
Wiki
Code
Merge requests
7
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dynare
dynare
Merge requests
!2089
Implements a logarithmic reduction Fortran routine and the associated test
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Implements a logarithmic reduction Fortran routine and the associated test
normann/dynare:logarithmic_reduction_fortran
into
master
Overview
6
Commits
3
Pipelines
4
Changes
17
Merged
Normann Rion
requested to merge
normann/dynare:logarithmic_reduction_fortran
into
master
2 years ago
Overview
6
Commits
3
Pipelines
4
Changes
17
Expand
👍
0
👎
0
Merge request reports
Compare
master
version 3
b45dc8f0
2 years ago
version 2
646550bd
2 years ago
version 1
1b16e848
2 years ago
master (base)
and
latest version
latest version
afb044c2
3 commits,
2 years ago
version 3
b45dc8f0
3 commits,
2 years ago
version 2
646550bd
3 commits,
2 years ago
version 1
1b16e848
3 commits,
2 years ago
17 files
+
512
−
73
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
17
Search (e.g. *.vue) (Ctrl+P)
matlab/missing/mex/cycle_reduction/cycle_reduction.m
+
1
−
1
Options
@@ -108,7 +108,7 @@ if (nargin == 5 && ~isempty(ch) )
if
(
res
>
cvg_tol
)
info
(
1
)
=
403
info
(
2
)
=
log
(
res
)
error
([
'
The
norm
of
the
residual
is
'
num2str
(
res
)
'
whereas
the
tolerance
criterion
is
'
num2str
(
cvg_tol
)
]
);
dprintf
(
'
The
norm
of
the
residual
is
%
s
whereas
the
tolerance
criterion
is
%
s
'
,
num2str
(
res
),
num2str
(
cvg_tol
));
end
end
Loading