From 2495aca72ae56eb03b779db6af9697592eb9c4cf Mon Sep 17 00:00:00 2001
From: sebastien <sebastien@ac1d8469-bf42-47a9-8791-bf33cf982152>
Date: Wed, 21 Jan 2009 14:39:24 +0000
Subject: [PATCH] trunk: * updated copyright headers of all files modified
 since January 1st: the copyright notice now encompasses 2009 * fixed various
 other copyright header issues

git-svn-id: https://www.dynare.org/svn/dynare/trunk@2364 ac1d8469-bf42-47a9-8791-bf33cf982152
---
 matlab/DsgeLikelihood.m                       |  2 +-
 matlab/DsgeLikelihood_hh.m                    |  2 +-
 matlab/DsgeSmoother.m                         |  2 +-
 matlab/dynare_estimation.m                    |  2 +-
 .../univariate_diffuse_kalman_filter.m        |  2 +-
 matlab/model_info.m                           |  2 +-
 mex/sources/korderpert/src/k_ord_dynare.cpp   |  8 ++++-
 mex/sources/korderpert/src/k_ord_dynare.h     | 32 ++++++++++--------
 .../korderpert/src/k_order_perturbation.cpp   | 31 +++++++++--------
 .../korderpert/src/k_order_perturbation.h     | 31 +++++++++--------
 .../korderpert/src/k_order_test_main.cpp      | 33 ++++++++++---------
 mex/sources/simulate/Interpreter.cc           |  2 +-
 mex/sources/simulate/Interpreter.hh           |  2 +-
 mex/sources/simulate/Mem_Mngr.cc              |  2 +-
 mex/sources/simulate/SparseMatrix.cc          |  2 +-
 mex/sources/simulate/SparseMatrix.hh          |  2 +-
 preprocessor/BlockTriangular.cc               |  2 +-
 preprocessor/ExprNode.cc                      |  2 +-
 preprocessor/MatlabFile.cc                    |  5 +--
 preprocessor/ModFile.cc                       |  2 +-
 preprocessor/ModelTree.cc                     |  2 +-
 preprocessor/ParsingDriver.cc                 |  2 +-
 preprocessor/include/ExprNode.hh              |  2 +-
 preprocessor/include/MatlabFile.hh            |  2 +-
 preprocessor/include/ModFile.hh               |  2 +-
 preprocessor/include/ModelTree.hh             |  2 +-
 preprocessor/macro/MacroBison.yy              |  2 +-
 preprocessor/macro/MacroDriver.cc             |  2 +-
 preprocessor/macro/MacroDriver.hh             |  2 +-
 preprocessor/macro/MacroFlex.ll               |  2 +-
 30 files changed, 107 insertions(+), 81 deletions(-)

diff --git a/matlab/DsgeLikelihood.m b/matlab/DsgeLikelihood.m
index 91ded2c0c5..14b1fbd7cc 100644
--- a/matlab/DsgeLikelihood.m
+++ b/matlab/DsgeLikelihood.m
@@ -21,7 +21,7 @@ function [fval,cost_flag,ys,trend_coeff,info] = DsgeLikelihood(xparam1,gend,data
 % SPECIAL REQUIREMENTS
 %
 
-% Copyright (C) 2004-2008 Dynare Team
+% Copyright (C) 2004-2009 Dynare Team
 %
 % This file is part of Dynare.
 %
diff --git a/matlab/DsgeLikelihood_hh.m b/matlab/DsgeLikelihood_hh.m
index 8ef555580b..6838c9cead 100644
--- a/matlab/DsgeLikelihood_hh.m
+++ b/matlab/DsgeLikelihood_hh.m
@@ -21,7 +21,7 @@ function [fval,llik,cost_flag,ys,trend_coeff,info] = DsgeLikelihood_hh(xparam1,g
 % SPECIAL REQUIREMENTS
 %
 
-% Copyright (C) 2004-2008 Dynare Team
+% Copyright (C) 2004-2009 Dynare Team
 %
 % This file is part of Dynare.
 %
diff --git a/matlab/DsgeSmoother.m b/matlab/DsgeSmoother.m
index 5d779eceb4..8eba116f10 100644
--- a/matlab/DsgeSmoother.m
+++ b/matlab/DsgeSmoother.m
@@ -30,7 +30,7 @@ function [alphahat,etahat,epsilonhat,ahat,SteadyState,trend_coeff,aK,T,R,P,PK,d,
 % SPECIAL REQUIREMENTS
 %   None
 
-% Copyright (C) 2006-2008 Dynare Team
+% Copyright (C) 2006-2009 Dynare Team
 %
 % This file is part of Dynare.
 %
diff --git a/matlab/dynare_estimation.m b/matlab/dynare_estimation.m
index ce5a6cb9c4..761211813d 100644
--- a/matlab/dynare_estimation.m
+++ b/matlab/dynare_estimation.m
@@ -11,7 +11,7 @@ function dynare_estimation(var_list_,dname)
 % SPECIAL REQUIREMENTS
 %   none
 
-% Copyright (C) 2003-2008 Dynare Team
+% Copyright (C) 2003-2009 Dynare Team
 %
 % This file is part of Dynare.
 %
diff --git a/matlab/kalman/likelihood/univariate_diffuse_kalman_filter.m b/matlab/kalman/likelihood/univariate_diffuse_kalman_filter.m
index c6adccac54..174fe4626d 100644
--- a/matlab/kalman/likelihood/univariate_diffuse_kalman_filter.m
+++ b/matlab/kalman/likelihood/univariate_diffuse_kalman_filter.m
@@ -28,7 +28,7 @@ function [LIK, lik] = univariate_diffuse_kalman_filter(T,R,Q,H,Pinf,Pstar,Y,star
 % NOTES
 %   The vector "lik" is used to evaluate the jacobian of the likelihood.
 
-% Copyright (C) 2004-2008 Dynare Team
+% Copyright (C) 2004-2009 Dynare Team
 %
 % This file is part of Dynare.
 %
diff --git a/matlab/model_info.m b/matlab/model_info.m
index 985297344d..a0b3d6cbd5 100644
--- a/matlab/model_info.m
+++ b/matlab/model_info.m
@@ -1,7 +1,7 @@
 function model_info;
 %function model_info;
 
-% Copyright (C) 2008 Dynare Team
+% Copyright (C) 2008-2009 Dynare Team
 %
 % This file is part of Dynare.
 %
diff --git a/mex/sources/korderpert/src/k_ord_dynare.cpp b/mex/sources/korderpert/src/k_ord_dynare.cpp
index b8a36d4fe7..5bdf5f69f6 100644
--- a/mex/sources/korderpert/src/k_ord_dynare.cpp
+++ b/mex/sources/korderpert/src/k_ord_dynare.cpp
@@ -1,4 +1,9 @@
-/* Dynare is free software: you can redistribute it and/or modify
+/*
+ * Copyright (C) 2008-2009 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.
@@ -11,6 +16,7 @@
  * You should have received a copy of the GNU General Public License
  * along with Dynare.  If not, see <http://www.gnu.org/licenses/>.
  */
+
 // GP, based on work by O.Kamenik
 
 #include <vector>
diff --git a/mex/sources/korderpert/src/k_ord_dynare.h b/mex/sources/korderpert/src/k_ord_dynare.h
index f32c7557a0..0d82bc627c 100644
--- a/mex/sources/korderpert/src/k_ord_dynare.h
+++ b/mex/sources/korderpert/src/k_ord_dynare.h
@@ -1,16 +1,22 @@
-/* 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/>.
-*/
+/*
+ * Copyright (C) 2005 Ondra Kamenik
+ * Copyright (C) 2008-2009 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/>.
+ */
 
 // based on: $Id: dynare3.h 1764 2008-03-31 14:30:55Z kamenik $
 // by 2005, Ondra Kamenik
diff --git a/mex/sources/korderpert/src/k_order_perturbation.cpp b/mex/sources/korderpert/src/k_order_perturbation.cpp
index f8a1469e17..0b71101f75 100644
--- a/mex/sources/korderpert/src/k_order_perturbation.cpp
+++ b/mex/sources/korderpert/src/k_order_perturbation.cpp
@@ -1,16 +1,21 @@
-/* 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/>.
-*/
+/*
+ * Copyright (C) 2008-2009 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/>.
+ */
 
 // k_order_perturbation.cpp : Defines the entry point for the DLL application.
 //
diff --git a/mex/sources/korderpert/src/k_order_perturbation.h b/mex/sources/korderpert/src/k_order_perturbation.h
index 836babb34f..904c84f704 100644
--- a/mex/sources/korderpert/src/k_order_perturbation.h
+++ b/mex/sources/korderpert/src/k_order_perturbation.h
@@ -1,16 +1,21 @@
-/* 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/>.
-*/
+/*
+ * Copyright (C) 2008-2009 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/>.
+ */
 
 // The following ifdef block is the standard way of creating macros which make exporting 
 // from a DLL simpler. All files within this DLL are compiled with the K_ORDER_PERTURBATION_EXPORTS
diff --git a/mex/sources/korderpert/src/k_order_test_main.cpp b/mex/sources/korderpert/src/k_order_test_main.cpp
index d29e95acd4..163a3010d1 100644
--- a/mex/sources/korderpert/src/k_order_test_main.cpp
+++ b/mex/sources/korderpert/src/k_order_test_main.cpp
@@ -1,18 +1,21 @@
-// k_order_test_main.cpp 
-
-/* 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/>.
-*/
+/*
+ * Copyright (C) 2008-2009 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/>.
+ */
 
 /*************************************
 * This main() is for testing k_order DLL entry point by linking to 
diff --git a/mex/sources/simulate/Interpreter.cc b/mex/sources/simulate/Interpreter.cc
index 68292dd9cb..b5ed099ed2 100644
--- a/mex/sources/simulate/Interpreter.cc
+++ b/mex/sources/simulate/Interpreter.cc
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2007-2008 Dynare Team
+ * Copyright (C) 2007-2009 Dynare Team
  *
  * This file is part of Dynare.
  *
diff --git a/mex/sources/simulate/Interpreter.hh b/mex/sources/simulate/Interpreter.hh
index 48440c7ffe..4c636ac583 100644
--- a/mex/sources/simulate/Interpreter.hh
+++ b/mex/sources/simulate/Interpreter.hh
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2007-2008 Dynare Team
+ * Copyright (C) 2007-2009 Dynare Team
  *
  * This file is part of Dynare.
  *
diff --git a/mex/sources/simulate/Mem_Mngr.cc b/mex/sources/simulate/Mem_Mngr.cc
index f48ffd8896..c0eb04f7cb 100644
--- a/mex/sources/simulate/Mem_Mngr.cc
+++ b/mex/sources/simulate/Mem_Mngr.cc
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2007-2008 Dynare Team
+ * Copyright (C) 2007-2009 Dynare Team
  *
  * This file is part of Dynare.
  *
diff --git a/mex/sources/simulate/SparseMatrix.cc b/mex/sources/simulate/SparseMatrix.cc
index 60fed2e7d2..4825b85800 100644
--- a/mex/sources/simulate/SparseMatrix.cc
+++ b/mex/sources/simulate/SparseMatrix.cc
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2007-2008 Dynare Team
+ * Copyright (C) 2007-2009 Dynare Team
  *
  * This file is part of Dynare.
  *
diff --git a/mex/sources/simulate/SparseMatrix.hh b/mex/sources/simulate/SparseMatrix.hh
index d8dc90a44a..2bfa60c6b1 100644
--- a/mex/sources/simulate/SparseMatrix.hh
+++ b/mex/sources/simulate/SparseMatrix.hh
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2007-2008 Dynare Team
+ * Copyright (C) 2007-2009 Dynare Team
  *
  * This file is part of Dynare.
  *
diff --git a/preprocessor/BlockTriangular.cc b/preprocessor/BlockTriangular.cc
index 5f9b02c3f7..036ab9bfb3 100644
--- a/preprocessor/BlockTriangular.cc
+++ b/preprocessor/BlockTriangular.cc
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2007-2008 Dynare Team
+ * Copyright (C) 2007-2009 Dynare Team
  *
  * This file is part of Dynare.
  *
diff --git a/preprocessor/ExprNode.cc b/preprocessor/ExprNode.cc
index 879e6bd379..c22a10358e 100644
--- a/preprocessor/ExprNode.cc
+++ b/preprocessor/ExprNode.cc
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2007-2008 Dynare Team
+ * Copyright (C) 2007-2009 Dynare Team
  *
  * This file is part of Dynare.
  *
diff --git a/preprocessor/MatlabFile.cc b/preprocessor/MatlabFile.cc
index 7fff2b498d..d5ba2d21c6 100644
--- a/preprocessor/MatlabFile.cc
+++ b/preprocessor/MatlabFile.cc
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2006-2008 Dynare Team
+ * Copyright (C) 2009 Dynare Team
  *
  * This file is part of Dynare.
  *
@@ -16,8 +16,9 @@
  * You should have received a copy of the GNU General Public License
  * along with Dynare.  If not, see <http://www.gnu.org/licenses/>.
  */
+
 /*
-Usefull documentation: Matlab 7 Mat-File Format
+Useful documentation: Matlab 7 Mat-File Format
 -----------------------------------------------
 revision: October 2008 PDF only Rereleased for Version 7.7 (Release 2008b)
 available at: http://www.mathworks.com/access/helpdesk/help/pdf_doc/matlab/matfile_format.pdf
diff --git a/preprocessor/ModFile.cc b/preprocessor/ModFile.cc
index 68a818f434..0d4887334e 100644
--- a/preprocessor/ModFile.cc
+++ b/preprocessor/ModFile.cc
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2006-2008 Dynare Team
+ * Copyright (C) 2006-2009 Dynare Team
  *
  * This file is part of Dynare.
  *
diff --git a/preprocessor/ModelTree.cc b/preprocessor/ModelTree.cc
index 4d369c29de..38401703c1 100644
--- a/preprocessor/ModelTree.cc
+++ b/preprocessor/ModelTree.cc
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2003-2008 Dynare Team
+ * Copyright (C) 2003-2009 Dynare Team
  *
  * This file is part of Dynare.
  *
diff --git a/preprocessor/ParsingDriver.cc b/preprocessor/ParsingDriver.cc
index 3ff818bc88..3a4367d0e4 100644
--- a/preprocessor/ParsingDriver.cc
+++ b/preprocessor/ParsingDriver.cc
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2003-2008 Dynare Team
+ * Copyright (C) 2003-2009 Dynare Team
  *
  * This file is part of Dynare.
  *
diff --git a/preprocessor/include/ExprNode.hh b/preprocessor/include/ExprNode.hh
index 29cc50aaa3..762cb624b9 100644
--- a/preprocessor/include/ExprNode.hh
+++ b/preprocessor/include/ExprNode.hh
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2007-2008 Dynare Team
+ * Copyright (C) 2007-2009 Dynare Team
  *
  * This file is part of Dynare.
  *
diff --git a/preprocessor/include/MatlabFile.hh b/preprocessor/include/MatlabFile.hh
index 807b174395..d2975e3e3a 100644
--- a/preprocessor/include/MatlabFile.hh
+++ b/preprocessor/include/MatlabFile.hh
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2006-2008 Dynare Team
+ * Copyright (C) 2009 Dynare Team
  *
  * This file is part of Dynare.
  *
diff --git a/preprocessor/include/ModFile.hh b/preprocessor/include/ModFile.hh
index f673a15c9c..f20cf40b81 100644
--- a/preprocessor/include/ModFile.hh
+++ b/preprocessor/include/ModFile.hh
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2006-2008 Dynare Team
+ * Copyright (C) 2006-2009 Dynare Team
  *
  * This file is part of Dynare.
  *
diff --git a/preprocessor/include/ModelTree.hh b/preprocessor/include/ModelTree.hh
index 9a3b14c346..1409e8ddf4 100644
--- a/preprocessor/include/ModelTree.hh
+++ b/preprocessor/include/ModelTree.hh
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2003-2008 Dynare Team
+ * Copyright (C) 2003-2009 Dynare Team
  *
  * This file is part of Dynare.
  *
diff --git a/preprocessor/macro/MacroBison.yy b/preprocessor/macro/MacroBison.yy
index a045ff448d..5d1c24f021 100644
--- a/preprocessor/macro/MacroBison.yy
+++ b/preprocessor/macro/MacroBison.yy
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2008 Dynare Team
+ * Copyright (C) 2008-2009 Dynare Team
  *
  * This file is part of Dynare.
  *
diff --git a/preprocessor/macro/MacroDriver.cc b/preprocessor/macro/MacroDriver.cc
index da1654b7bc..e294cddb29 100644
--- a/preprocessor/macro/MacroDriver.cc
+++ b/preprocessor/macro/MacroDriver.cc
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2008 Dynare Team
+ * Copyright (C) 2008-2009 Dynare Team
  *
  * This file is part of Dynare.
  *
diff --git a/preprocessor/macro/MacroDriver.hh b/preprocessor/macro/MacroDriver.hh
index eb54736050..7d1e0feea2 100644
--- a/preprocessor/macro/MacroDriver.hh
+++ b/preprocessor/macro/MacroDriver.hh
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2008 Dynare Team
+ * Copyright (C) 2008-2009 Dynare Team
  *
  * This file is part of Dynare.
  *
diff --git a/preprocessor/macro/MacroFlex.ll b/preprocessor/macro/MacroFlex.ll
index 2ac103c8d8..bc1ca19561 100644
--- a/preprocessor/macro/MacroFlex.ll
+++ b/preprocessor/macro/MacroFlex.ll
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2008 Dynare Team
+ * Copyright (C) 2008-2009 Dynare Team
  *
  * This file is part of Dynare.
  *
-- 
GitLab