Skip to content
Snippets Groups Projects
Verified Commit 06926e01 authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Bug fix (missing semicolon).

parent cfb8a1d1
No related branches found
No related tags found
No related merge requests found
...@@ -274,9 +274,9 @@ for i=1:rows(elist) ...@@ -274,9 +274,9 @@ for i=1:rows(elist)
fprintf(fid, '\t%s %s\n', elist{i,1}, elist{i,2}); fprintf(fid, '\t%s %s\n', elist{i,1}, elist{i,2});
end end
end end
fprintf(fid, ';\n\n');
if exist('plist', 'var') && ~isempty(plist) if exist('plist', 'var') && ~isempty(plist)
% Print list of parameters. % Print list of parameters.
fprintf(fid, ';\n\n');
fprintf(fid, 'parameters\n'); fprintf(fid, 'parameters\n');
for i=1:length(plist) for i=1:length(plist)
fprintf(fid, '\t%s\n', plist{i}); fprintf(fid, '\t%s\n', plist{i});
...@@ -296,8 +296,8 @@ if exist('xlist', 'var') && ~isempty(xlist) ...@@ -296,8 +296,8 @@ if exist('xlist', 'var') && ~isempty(xlist)
fprintf(fid, '\t%s %s\n', xlist{i,1}, xlist{i,2}); fprintf(fid, '\t%s %s\n', xlist{i,1}, xlist{i,2});
end end
end end
end
fprintf(fid, ';\n'); fprintf(fid, ';\n');
end
skipline(1, fid) skipline(1, fid)
% Provide an interface to flip endogenous and exogenous variables. Active if only macrovariable % Provide an interface to flip endogenous and exogenous variables. Active if only macrovariable
% InvertModel is set to True. The calls to the change_type command must be provided in the file % InvertModel is set to True. The calls to the change_type command must be provided in the file
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment