[Rcpp-commits] r3498 - pkg/RcppEigen

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Thu Mar 8 20:41:53 CET 2012


Author: dmbates
Date: 2012-03-08 20:41:53 +0100 (Thu, 08 Mar 2012)
New Revision: 3498

Added:
   pkg/RcppEigen/NEWS
   pkg/RcppEigen/NEWS.org
Modified:
   pkg/RcppEigen/ChangeLog
Log:
Update Changelog and NEWS which is generated from an org-mode file NEWS.org


Modified: pkg/RcppEigen/ChangeLog
===================================================================
--- pkg/RcppEigen/ChangeLog	2012-03-08 19:19:09 UTC (rev 3497)
+++ pkg/RcppEigen/ChangeLog	2012-03-08 19:41:53 UTC (rev 3498)
@@ -1,3 +1,34 @@
+2012-03-08  Douglas Bates <bates at stat.wisc.edu>
+
+	* inst/tests/test-solutions.R, inst/tests/test-transform.R,
+	  inst/tests/test-wrap.R: Add testthat test files, temporarily disabled
+	  for R CMD check because of an unknown conflict
+	* DESCRIPTION, R/unit.test.R, inst/include/Eigen/Cholesky,
+	 ..., src/Makevars: Massive changes in upgrade to Eigen-3.1.0-alpha2
+
+2012-03-03  Douglas Bates <bates at stat.wisc.edu>
+
+	* inst/include/RcppEigenWrap.h: Correct a typo.
+
+2012-02-28  Douglas Bates <bates at stat.wisc.edu>
+
+	* inst/include/RcppEigenForward.h, inst/include/RcppEigenWrap.h: Add as
+	  templates for ArrayXd and ArrayXXd
+
+2012-02-03  Douglas Bates <bates at stat.wisc.edu>
+
+	* inst/include/RcppEigenWrap.h, inst/unitTests/runit.sparse.R: Allow
+	  import of compressed row sparse matrices. Add test of same.
+
+2012-01-18  Douglas Bates <bates at stat.wisc.edu>
+
+	* inst/include/RcppEigenWrap.h: Allow for wrapping sparse row-major
+	  matrices.
+
+2011-12-31  Douglas Bates <bates at stat.wisc.edu>
+
+	* inst/include/RcppEigenCholmod.h: Minor typo in a comment
+
 2011-12-23  Dirk Eddelbuettel  <edd at debian.org>
 
 	* inst/unitTests/runTests.R: unit tests output 'fallback' directory

Added: pkg/RcppEigen/NEWS
===================================================================
--- pkg/RcppEigen/NEWS	                        (rev 0)
+++ pkg/RcppEigen/NEWS	2012-03-08 19:41:53 UTC (rev 3498)
@@ -0,0 +1,53 @@
+                       NEWS for RcppEigen-0.2.0
+                       ========================
+
+Author: Douglas Bates
+Date: 2012-03-08 Thu
+
+
+Table of Contents
+=================
+1 New features visible to users
+2 New features not visible to users
+
+
+1 New features visible to users 
+--------------------------------
+  + Upgraded the version of Eigen to 3.1.0-alpha2, in which the sparse
+    matrix modules are now in the "supported" tree.
+  + Added several "unsupported" Eigen modules including
+    - AutoDiff (a small automatic differentiation package adapted to
+      vectors and matrices)
+    - IterativeSolvers (iterative linear and nonlinear solver algorithms)
+    - KroneckerProduct (as the name implies)
+    - MatrixFunctions (matrix cos, exp, log, sin, sinh, etc.)
+    - NonlinearOptimization (based on minpack but uses reverse
+      communication - yay!)
+    - NumericalDiff (numerical differentiation of vector-valued or
+      matrix-valued functions)
+    - Polynomials (polynomial representation and solution using a QR
+      algorithm)
+    - Skyline (sparse skyline matrices useful in finite-element codes)
+    - SparseExtra (dynamic sparse matrices, now deprecated, and Matrix
+      Market I/O functions)
+    - Splines (multidimensional spline representations and spline
+      interpolation)
+  + At present the MatrixFunctions module is included with
+    RcppEigen.h but that may change if too many people get
+    unexpected results from A.exp()
+  + The ability to wrap RowMajor sparse matrices and to use
+    as<Eigen::ArrayXd> etc.
+
+2 New features not visible to users 
+------------------------------------
+  + Migrated some tests to the testthat package.  Currently there is
+    some difficulty with combining testthat, inline and R CMD check.
+    These checks are available as
+
+
+  library(testthat)
+  test_package(RcppEigen)
+
+
+ 
+

Added: pkg/RcppEigen/NEWS.org
===================================================================
--- pkg/RcppEigen/NEWS.org	                        (rev 0)
+++ pkg/RcppEigen/NEWS.org	2012-03-08 19:41:53 UTC (rev 3498)
@@ -0,0 +1,45 @@
+#+TITLE:     NEWS for RcppEigen-0.2.0
+#+AUTHOR:    Douglas Bates
+#+EMAIL:     bates at stat.wisc.edu
+#+DATE:      2012-03-08 Thu
+#+DESCRIPTION: News regarding the latest version of RcppEigen
+#+KEYWORDS:
+#+LANGUAGE:  en
+
+* New features visible to users
+  + Upgraded the version of Eigen to 3.1.0-alpha2, in which the sparse
+    matrix modules are now in the "supported" tree.
+  + Added several "unsupported" Eigen modules including
+    - AutoDiff (a small automatic differentiation package adapted to
+      vectors and matrices)
+    - IterativeSolvers (iterative linear and nonlinear solver algorithms)
+    - KroneckerProduct (as the name implies)
+    - MatrixFunctions (matrix cos, exp, log, sin, sinh, etc.)
+    - NonlinearOptimization (based on minpack but uses reverse
+      communication - yay!)
+    - NumericalDiff (numerical differentiation of vector-valued or
+      matrix-valued functions)
+    - Polynomials (polynomial representation and solution using a QR
+      algorithm)
+    - Skyline (sparse skyline matrices useful in finite-element codes)
+    - SparseExtra (dynamic sparse matrices, now deprecated, and Matrix
+      Market I/O functions)
+    - Splines (multidimensional spline representations and spline
+      interpolation)
+  + At present all these modules, including the MatrixFunctions
+    module, are included with RcppEigen.h but that may change if too
+    many people get unexpected results from A.exp()
+  + The ability to wrap RowMajor sparse matrices and to use
+    as<Eigen::ArrayXd> etc.
+
+* New features not visible to users
+  + Migrated some tests to the testthat package.  Currently there is
+    some difficulty with combining testthat, inline and R CMD check.
+    These checks are available as
+#+BEGIN_EXAMPLE
+library(testthat)
+test_package(RcppEigen)
+#+END_EXAMPLE
+
+ 
+



More information about the Rcpp-commits mailing list