From cb9a15eb9d558b2b4b67f9e6806b394f65bff01f Mon Sep 17 00:00:00 2001 From: Dirk Eddelbuettel Date: Wed, 30 Nov 2022 20:15:42 -0600 Subject: [PATCH] Simplify includes and only include RcppArmadillo.h --- inst/include/sgl.h | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/inst/include/sgl.h b/inst/include/sgl.h index a36011e..869a295 100644 --- a/inst/include/sgl.h +++ b/inst/include/sgl.h @@ -21,13 +21,12 @@ #define R_NO_REMAP +//R, Rcpp, RcppArmadillo +#include + //Progress monitor #include -//Rcpp ect -#include -#include -#include // Debugging #ifdef SGL_DEBUG @@ -45,8 +44,10 @@ #else // Do no debugging #define ARMA_NO_DEBUG +#ifndef NDEBUG #define NDEBUG #endif +#endif // Registration helper macros #define STR_VALUE(x) #x @@ -59,11 +60,6 @@ #define CALL_METHOD(METHOD, MODULE, ARGS) {GET_STR_VALUE(FUN_NAME(METHOD,MODULE)), (DL_FUNC) &r_ ## MODULE ## _ ## METHOD, ARGS} -//Support for xl matrices -//#define ARMA_64BIT_WORD - -#include -#include //Boost #include guix/log/gnu/installer/locale.scm'>logtreecommitdiff
lass='left'>Author /td>
AgeCommit message (Expand)Author
2024-10-19services: ntp: Default to an address that supports IPv6....* gnu/services/networking.scm (%ntp-servers): Replace 0.guix.pool.ntp.org with 2.guix.pool.ntp.org. Fixes: <https://issues.guix.gnu.org/71462> Change-Id: I8bf3dc1cec58e7977c5369739b8662f817eeb186 Maxim Cournoyer
2024-10-16Add copyright lines....They are related to commit eb1515849efa3e0d3d838cb04ea87100084068a0. * doc/guix.texi: Add copyright message. * gnu/services/networking.scm: Add copyright message. Change-Id: Ica510fd6e80228f124f0c084403e1dea7c9baa1b Signed-off-by: Ludovic Courtès <ludo@gnu.org> Nigko Yerden
2024-10-14services: tor: Add support for pluggable transports....Pluggable transports are programs that disguise Tor traffic, which can be useful in case Tor is censored. Pluggable transports cannot be configured by #:config-file file exclusively because Tor process is run via 'least-authority-wrapper' and cannot have access to transport plugin, which is a separate executable (Bug#70302, Bug#70332). * doc/guix.texi (Networking Services): Document 'tor-transport-plugin' data type and 'transport-plugins' option for 'tor-configuration. * gnu/services/networking.scm: Export 'tor-configuration-transport-plugins', 'tor-transport-plugin', 'tor-transport-plugin?', 'tor-plugin-role', 'tor-plugin-protocol', and 'tor-plugin-program'. (<tor-configuration>): Add 'transport-plugins' field. (<tor-transport-plugin>): New variable. (tor-configuration->torrc): Add content to 'torrc' computed-file. (tor-shepherd-service): Add file-system-mapping(s). Change-Id: I1b0319358778c7aee650bc843e021a6803a1cf3a Signed-off-by: Ludovic Courtès <ludo@gnu.org> Nigko Yerden
2024-10-07services: networking: Add 'version' field to dhcp-client-configuration....* gnu/services/networking.scm (<dhcp-client-configuration>) [version]: New field. (dhcp-client-shepherd-service): Use 'match-record' instead of various accessors. Honor the new 'version field'. Include the version the PID file name when a non-default version is used. * doc/guix.texi (Networking Setup) <dhcp-client-configuration> [version]: Document it. Change-Id: I6236ae160967c95fe7a2c1785821cc9b0c183e77 Maxim Cournoyer
Bruno Victal