Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dynare
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dynare
dynare
Merge requests
!1736
Factorize prior bound and definiteness checks
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Factorize prior bound and definiteness checks
JohannesPfeifer/dynare:factorize_checks
into
master
Overview
0
Commits
1
Pipelines
3
Changes
5
Merged
Factorize prior bound and definiteness checks
Johannes Pfeifer
requested to merge
JohannesPfeifer/dynare:factorize_checks
into
master
Jun 22, 2020
Overview
0
Commits
1
Pipelines
3
Changes
5
also removes useless isestimation check
0
0
Merge request reports
Compare
master
version 2
96e3dbfb
Jun 22, 2020
version 1
a41d92aa
Jun 22, 2020
master (base)
and
latest version
latest version
cfe10693
1 commit,
Jun 22, 2020
version 2
96e3dbfb
1 commit,
Jun 22, 2020
version 1
a41d92aa
1 commit,
Jun 22, 2020
5 files
+
115
−
199
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
matlab/utilities/general/isestimation.m deleted
100644 → 0
+
0
−
26
View file @ 3dd0b0e1
function
b
=
isestimation
(
option
)
% Returns true if we are currently estimating a model.
% Copyright (C) 2017 Dynare Team
%
% This file is part of Dynare.
%
% Dynare is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% Dynare is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
b
=
false
;
if
ischar
(
option
.
mode_compute
)
||
option
.
mode_compute
||
option
.
mh_replic
b
=
true
;
end
\ No newline at end of file
Loading