[Rcpp-commits] r1541 - in pkg/RcppArmadillo: . inst inst/include
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Tue Jun 15 02:51:06 CEST 2010
Author: edd
Date: 2010-06-15 02:51:06 +0200 (Tue, 15 Jun 2010)
New Revision: 1541
Modified:
pkg/RcppArmadillo/DESCRIPTION
pkg/RcppArmadillo/NEWS
pkg/RcppArmadillo/inst/ChangeLog
pkg/RcppArmadillo/inst/include/RcppArmadilloConfig.h
Log:
release 0.2.3
also (finally) edited DESCRIPTION to provide a nicer package title
Modified: pkg/RcppArmadillo/DESCRIPTION
===================================================================
--- pkg/RcppArmadillo/DESCRIPTION 2010-06-14 17:33:32 UTC (rev 1540)
+++ pkg/RcppArmadillo/DESCRIPTION 2010-06-15 00:51:06 UTC (rev 1541)
@@ -1,27 +1,27 @@
Package: RcppArmadillo
Type: Package
-Title: Rcpp/Armadillo bridge
-Version: 0.2.2.1
+Title: Rcpp integration for Armadillo templated linear algebra library
+Version: 0.2.3
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 C++ linear algebra library aiming towards a good balance
- between speed and ease of use. Integer, floating point and complex
+ 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
+ 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 reduce (or eliminate) the need for
+ several operations into one, and to reduce (or eliminate) the need for
temporaries. This is accomplished through recursive templates and template
meta-programming.
.
This library is useful if C++ has been decided as the language of choice
(due to speed and/or integration capabilities), rather than another language.
.
- The RcppArmadillo package includes the header from the templated Armadillo
- library.
+ The RcppArmadillo package includes the header files from the templated
+ Armadillo library.
.
This Armadillo integration provides a nice illustration of the
capabilities of the Rcpp package for seamless R and C++ integration.
Modified: pkg/RcppArmadillo/NEWS
===================================================================
--- pkg/RcppArmadillo/NEWS 2010-06-14 17:33:32 UTC (rev 1540)
+++ pkg/RcppArmadillo/NEWS 2010-06-15 00:51:06 UTC (rev 1541)
@@ -1,6 +1,6 @@
-0.2.3 (under development)
+0.2.3 2010-06-14
- o better configuration to detect suncc (suncc does not have std::isfinite)
+ o Better configuration to detect suncc (which does not have std::isfinite)
0.2.2 2010-06-09
Modified: pkg/RcppArmadillo/inst/ChangeLog
===================================================================
--- pkg/RcppArmadillo/inst/ChangeLog 2010-06-14 17:33:32 UTC (rev 1540)
+++ pkg/RcppArmadillo/inst/ChangeLog 2010-06-15 00:51:06 UTC (rev 1541)
@@ -1,6 +1,10 @@
+2010-06-14 Dirk Eddelbuettel <edd at debian.org>
+
+ * DESCRIPTION: Release 0.2.3
+
2010-06-14 Romain Francois <romain at r-enthusiasts.com>
- * inst/include/RcppArmadilloConfig.h: helping suncc
+ * inst/include/RcppArmadilloConfig.h: Addition cconfig helping suncc
2010-06-09 Dirk Eddelbuettel <edd at debian.org>
Modified: pkg/RcppArmadillo/inst/include/RcppArmadilloConfig.h
===================================================================
--- pkg/RcppArmadillo/inst/include/RcppArmadilloConfig.h 2010-06-14 17:33:32 UTC (rev 1540)
+++ pkg/RcppArmadillo/inst/include/RcppArmadilloConfig.h 2010-06-15 00:51:06 UTC (rev 1541)
@@ -29,7 +29,8 @@
/*
suncc does not have std::isfinite (which is not standard)
- so we tell armadillo not to use it
+ so we tell armadillo not to use it, and comment out a few
+ others while we are at it
*/
#if defined(__SUNPRO_CC)
#undef ARMA_HAVE_STD_ISFINITE
More information about the Rcpp-commits
mailing list