1function [] = Tracing()
2% DESCRIPTION
3% This function is used to test the correct execution of a matlab section
4% on remote machine.
5%
6% If no error happen the function simply create a file.
7%
8% INPUTS
9% ...
10%
11% OUTPUTS
12% ...
13%
14% SPECIAL REQUIREMENTS
15%    none
16
17% Copyright (C) 2010-2017 Dynare Team
18%
19% This file is part of Dynare.
20%
21% Dynare is free software: you can redistribute it and/or modify
22% it under the terms of the GNU General Public License as published by
23% the Free Software Foundation, either version 3 of the License, or
24% (at your option) any later version.
25%
26% Dynare is distributed in the hope that it will be useful,
27% but WITHOUT ANY WARRANTY; without even the implied warranty of
28% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
29% GNU General Public License for more details.
30%
31% You should have received a copy of the GNU General Public License
32% along with Dynare.  If not, see <http://www.gnu.org/licenses/>.
33
34fid = fopen('Tracing.txt','w+');
35fclose (fid);
36
37exit
38