[Rcpp-commits] r2524 - in pkg/RcppArmadillo: . inst inst/include/armadillo_bits

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Thu Nov 25 15:52:26 CET 2010


Author: edd
Date: 2010-11-25 15:52:26 +0100 (Thu, 25 Nov 2010)
New Revision: 2524

Modified:
   pkg/RcppArmadillo/ChangeLog
   pkg/RcppArmadillo/DESCRIPTION
   pkg/RcppArmadillo/inst/NEWS
   pkg/RcppArmadillo/inst/include/armadillo_bits/arma_version.hpp
Log:
version 0.2.10 with Armadillo 1.0.0


Modified: pkg/RcppArmadillo/ChangeLog
===================================================================
--- pkg/RcppArmadillo/ChangeLog	2010-11-25 12:59:09 UTC (rev 2523)
+++ pkg/RcppArmadillo/ChangeLog	2010-11-25 14:52:26 UTC (rev 2524)
@@ -1,3 +1,9 @@
+2010-11-25  Dirk Eddelbuettel  <edd at debian.org>
+
+	* DESCRIPTION: Release 0.2.10
+
+	* inst/include/*: Update to Armadillo 1.0.0 "Antipodean Antileech”
+
 2010-11-19  Dirk Eddelbuettel  <edd at debian.org>
 
 	* R/fastLm.R: Also provide two R-squared measures in summary method
@@ -6,8 +12,8 @@
 
 	* DESCRIPTION: remove dependency on GNU make
 
-	* R/RcppArmadillo.package.skeleton.R: updated skeleton generator so that the
-	dependency on GNU make is removed
+	* R/RcppArmadillo.package.skeleton.R: updated skeleton generator so
+	that the dependency on GNU make is removed
 
 2010-11-11  Dirk Eddelbuettel  <edd at debian.org>
 

Modified: pkg/RcppArmadillo/DESCRIPTION
===================================================================
--- pkg/RcppArmadillo/DESCRIPTION	2010-11-25 12:59:09 UTC (rev 2523)
+++ pkg/RcppArmadillo/DESCRIPTION	2010-11-25 14:52:26 UTC (rev 2524)
@@ -1,16 +1,16 @@
 Package: RcppArmadillo
 Type: Package
 Title: Rcpp integration for Armadillo templated linear algebra library
-Version: 0.2.9.1
+Version: 0.2.10
 Date: $Date$
 Author: Romain Francois, Dirk Eddelbuettel and Doug Bates
 Maintainer: Romain, Dirk and Doug <RcppArmadillo-authors at r-enthusiasts.com>
 Description: R and Armadillo integration using Rcpp
- Armadillo is a templated C++ linear algebra library aiming towards a good
- balance between speed and ease of use. Integer, floating point and complex
- numbers are supported, as well as a subset of trigonometric and statistics
- functions. Various matrix decompositions are provided through optional
- integration with LAPACK and ATLAS libraries.
+ Armadillo is a templated C++ linear algebra library (by Conrad Sanderson)
+ that aims towards a good balance between speed and ease of use. Integer,
+ floating point and complex numbers are supported, as well as a subset of
+ trigonometric and statistics functions. Various matrix decompositions are
+ provided through optional integration with LAPACK and ATLAS libraries.
  .
  A delayed evaluation approach is employed (during compile time) to combine 
  several operations into one, and to reduce (or eliminate) the need for 
@@ -21,7 +21,7 @@
  (due to speed and/or integration capabilities), rather than another language.
  .
  The RcppArmadillo package includes the header files from the templated
- Armadillo library (currently version 0.9.92). Thus users do not need to
+ Armadillo library (currently version 1.0.0). Thus users do not need to
  install Armadillo itself in order to use RcppArmadillo.
  .
  This Armadillo integration provides a nice illustration of the 

Modified: pkg/RcppArmadillo/inst/NEWS
===================================================================
--- pkg/RcppArmadillo/inst/NEWS	2010-11-25 12:59:09 UTC (rev 2523)
+++ pkg/RcppArmadillo/inst/NEWS	2010-11-25 14:52:26 UTC (rev 2524)
@@ -1,5 +1,14 @@
-0.2.10  TBD
+0.2.10  2010-11-25
 
+    o   Upgraded to Armadillo 1.0.0 "Antipodean Antileech"
+
+         * After 2 1/2 years of collaborative development, we are proud to
+	   release the 1.0 milestone version. 
+         * Many thanks are extended to all contributors and bug reporters.
+
+    o   R/RcppArmadillo.package.skeleton.R: Updated to no longer rely on GNU
+        make for builds of packages using RcppArmadillo
+ 
     o   summary() for fastLm() objects now returns r.squared and adj.r.squared
 
 0.2.9   2010-11-11

Modified: pkg/RcppArmadillo/inst/include/armadillo_bits/arma_version.hpp
===================================================================
--- pkg/RcppArmadillo/inst/include/armadillo_bits/arma_version.hpp	2010-11-25 12:59:09 UTC (rev 2523)
+++ pkg/RcppArmadillo/inst/include/armadillo_bits/arma_version.hpp	2010-11-25 14:52:26 UTC (rev 2524)
@@ -16,13 +16,20 @@
 
 
 
-#define ARMA_VERSION_MAJOR 0
-#define ARMA_VERSION_MINOR 9
-#define ARMA_VERSION_PATCH 92
-#define ARMA_VERSION_NAME  "Wall Street Gangster"
+#define ARMA_VERSION_MAJOR 1
+#define ARMA_VERSION_MINOR 0
+#define ARMA_VERSION_PATCH 0
+#define ARMA_VERSION_NAME  "Antipodean Antileech"
 
+// http://dictionary.reference.com/browse/leech
+// 
+// 2. a person who clings to another for personal gain,
+// esp. without giving anything in return, and usually
+// with the implication or effect of exhausting the
+// other's resources; parasite. 
 
 
+
 struct arma_version
   {
   static const unsigned int major = ARMA_VERSION_MAJOR;



More information about the Rcpp-commits mailing list