[Rcpp-commits] r3518 - pkg/RcppSMC/src

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Sat Mar 17 17:31:04 CET 2012


Author: edd
Date: 2012-03-17 17:31:04 +0100 (Sat, 17 Mar 2012)
New Revision: 3518

Modified:
   pkg/RcppSMC/src/blockpfgaussianopt.cpp
   pkg/RcppSMC/src/history.cpp
   pkg/RcppSMC/src/pf.cpp
   pkg/RcppSMC/src/pfnonlinbs.cpp
   pkg/RcppSMC/src/smc-exception.cpp
Log:
copyright header standardization


Modified: pkg/RcppSMC/src/blockpfgaussianopt.cpp
===================================================================
--- pkg/RcppSMC/src/blockpfgaussianopt.cpp	2012-03-17 15:43:36 UTC (rev 3517)
+++ pkg/RcppSMC/src/blockpfgaussianopt.cpp	2012-03-17 16:31:04 UTC (rev 3518)
@@ -1,3 +1,26 @@
+// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; indent-tabs-mode: nil; -*-
+//
+// blockpfgaussianopt.cpp: Rcpp integration of SMC library -- Block PF Gaussian
+//
+// Copyright (C) 2008         Adam Johansen
+// Copyright (C) 2012         Dirk Eddelbuettel and Adam Johansen
+//
+// This file is part of RcppSMC.
+//
+// RcppSMC 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 2 of the License, or
+// (at your option) any later version.
+//
+// RcppSMC 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 RcppSMC.  If not, see <http://www.gnu.org/licenses/>.
+// from examples/pf/pfexample.cc; pffuncs.cc and pffuncs.hh also used
+
 #include "smctc.h"
 #include "blockpfgaussianopt.h"
 #include "rngR.h"

Modified: pkg/RcppSMC/src/history.cpp
===================================================================
--- pkg/RcppSMC/src/history.cpp	2012-03-17 15:43:36 UTC (rev 3517)
+++ pkg/RcppSMC/src/history.cpp	2012-03-17 16:31:04 UTC (rev 3518)
@@ -1,3 +1,26 @@
+// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; indent-tabs-mode: nil; -*-
+//
+// history.cpp: Rcpp integration of SMC library -- sampler history
+//
+// Copyright (C) 2008         Adam Johansen
+// Copyright (C) 2012         Dirk Eddelbuettel and Adam Johansen
+//
+// This file is part of RcppSMC.
+//
+// RcppSMC 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 2 of the License, or
+// (at your option) any later version.
+//
+// RcppSMC 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 RcppSMC.  If not, see <http://www.gnu.org/licenses/>.
+// from examples/pf/pfexample.cc; pffuncs.cc and pffuncs.hh also used
+
 #include "smctc.h"
 
 //! \file

Modified: pkg/RcppSMC/src/pf.cpp
===================================================================
--- pkg/RcppSMC/src/pf.cpp	2012-03-17 15:43:36 UTC (rev 3517)
+++ pkg/RcppSMC/src/pf.cpp	2012-03-17 16:31:04 UTC (rev 3518)
@@ -2,7 +2,8 @@
 //
 // pf.cpp: Rcpp wrapper for SMC library -- first example of Johansen (2009)
 //
-// Copyright (C) 2012         Dirk Eddelbuettel
+// Copyright (C) 2008         Adam Johansen
+// Copyright (C) 2012         Dirk Eddelbuettel and Adam Johansen
 //
 // This file is part of RcppSMC.
 //
@@ -17,15 +18,9 @@
 // GNU General Public License for more details.
 //
 // You should have received a copy of the GNU General Public License
-// along with RInside.  If not, see <http://www.gnu.org/licenses/>.
+// along with RcppSMC.  If not, see <http://www.gnu.org/licenses/>.
 // from examples/pf/pfexample.cc; pffuncs.cc and pffuncs.hh also used
 
-// RcppSMC builds on top of, and wraps, SMCTC which is
-//
-//   Copyright Adam Johansen, 2008.
-//
-// and released under GPL-3, see the copyright headers in inst/include/ 
-
 #include <Rcpp.h>
 
 #include "smctc.h"

Modified: pkg/RcppSMC/src/pfnonlinbs.cpp
===================================================================
--- pkg/RcppSMC/src/pfnonlinbs.cpp	2012-03-17 15:43:36 UTC (rev 3517)
+++ pkg/RcppSMC/src/pfnonlinbs.cpp	2012-03-17 16:31:04 UTC (rev 3518)
@@ -1,16 +1,17 @@
+// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; indent-tabs-mode: nil; -*-
 //
-//     pf1dnonlinbs.cpp
+// pfnonlinbs.cpp: Rcpp integration of SMC library -- PF Nonlinear Bootstrp
 //
-//     The principle source file for an implementation of the bootstrap
-//     particle filter of "Novel approaches to nonlinear non-Gaussian
-//     Bayesian state estimation", Gordon Salmond and Smith, 
-//     IEE PROCEEDINGS-F 140(2):107-113, 1993
+//    The principle source file for an implementation of the bootstrap
+//    particle filter of "Novel approaches to nonlinear non-Gaussian
+//    Bayesian state estimation", Gordon Salmond and Smith, 
+//    IEE PROCEEDINGS-F 140(2):107-113, 1993
 //
-//     Copyright Adam Johansen, 2012
+// Copyright (C) 2008         Adam Johansen
+// Copyright (C) 2012         Dirk Eddelbuettel and Adam Johansen
 //
-//   This file is part of RcppSMC.
+// This file is part of RcppSMC.
 //
-//
 // RcppSMC 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 2 of the License, or
@@ -22,15 +23,9 @@
 // GNU General Public License for more details.
 //
 // You should have received a copy of the GNU General Public License
-// along with RInside.  If not, see <http://www.gnu.org/licenses/>.
+// along with RcppSMC.  If not, see <http://www.gnu.org/licenses/>.
 // from examples/pf/pfexample.cc; pffuncs.cc and pffuncs.hh also used
 
-// RcppSMC builds on top of, and wraps, SMCTC which is
-//
-//   Copyright Adam Johansen, 2008-2012.
-//
-// and released under GPL-3, see the copyright headers in inst/include/ 
-
 #include "smctc.h"
 #include "pfnonlinbs.h"
 

Modified: pkg/RcppSMC/src/smc-exception.cpp
===================================================================
--- pkg/RcppSMC/src/smc-exception.cpp	2012-03-17 15:43:36 UTC (rev 3517)
+++ pkg/RcppSMC/src/smc-exception.cpp	2012-03-17 16:31:04 UTC (rev 3518)
@@ -1,3 +1,26 @@
+// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; indent-tabs-mode: nil; -*-
+//
+// smc-exceptions.cpp: Rcpp integration of SMC library -- exception handling
+//
+// Copyright (C) 2008         Adam Johansen
+// Copyright (C) 2012         Dirk Eddelbuettel and Adam Johansen
+//
+// This file is part of RcppSMC.
+//
+// RcppSMC 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 2 of the License, or
+// (at your option) any later version.
+//
+// RcppSMC 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 RcppSMC.  If not, see <http://www.gnu.org/licenses/>.
+// from examples/pf/pfexample.cc; pffuncs.cc and pffuncs.hh also used
+
 #include "smc-exception.h"
 
 //! \file



More information about the Rcpp-commits mailing list