Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eddelbuettel/bh
R package providing Boost Header files
https://github.com/eddelbuettel/bh
boost c-plus-plus r r-package rcpp
Last synced: 5 days ago
JSON representation
R package providing Boost Header files
- Host: GitHub
- URL: https://github.com/eddelbuettel/bh
- Owner: eddelbuettel
- Created: 2014-01-01T18:06:12.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2024-01-10T12:49:36.000Z (10 months ago)
- Last Synced: 2024-05-09T10:28:25.492Z (6 months ago)
- Topics: boost, c-plus-plus, r, r-package, rcpp
- Language: C++
- Size: 38.7 MB
- Stars: 84
- Watchers: 10
- Forks: 33
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
Awesome Lists containing this project
README
## bh: Boost Headers for R
[![CI](https://github.com/eddelbuettel/bh/workflows/ci/badge.svg)](https://github.com/eddelbuettel/bh/actions?query=workflow%3Aci)
[![License](https://img.shields.io/badge/license-BSL--1.0-brightgreen.svg?style=flat)](https://www.boost.org/users/license.html)
[![CRAN](https://www.r-pkg.org/badges/version/BH)](https://cran.r-project.org/package=BH)
[![Dependencies](https://tinyverse.netlify.app/badge/BH)](https://cran.r-project.org/package=BH)
[![Last Commit](https://img.shields.io/github/last-commit/eddelbuettel/bh)](https://github.com/eddelbuettel/bh)
[![Downloads (monthly)](https://cranlogs.r-pkg.org/badges/BH?color=brightgreen)](https://www.r-pkg.org:443/pkg/BH)
[![Downloads (total)](https://cranlogs.r-pkg.org/badges/grand-total/BH?color=brightgreen)](https://www.r-pkg.org:443/pkg/BH)
[![CRAN use](https://jangorecki.gitlab.io/rdeps/BH/CRAN_usage.svg?sanitize=true)](https://cran.r-project.org/package=BH)
[![BioConductor use](https://jangorecki.gitlab.io/rdeps/BH/BioC_usage.svg?sanitize=true)](https://cran.r-project.org/package=BH)### Synopsis
This package provides [R](https://www.r-project.org) with access to
[Boost](https://www.boost.org/) header files. [Boost](https://www.boost.org/)
provides free peer-reviewed portable C++ source libraries. A large part of
[Boost](https://www.boost.org/) is provided as C++ template code which is
resolved entirely at compile-time without linking.This package aims to provide the most useful subset of
[Boost](https://www.boost.org/) libraries for template use among CRAN
packages. By placing these libraries in this package, we offer a more
efficient distribution system for CRAN as replication of this code in the
sources of other packages is avoided.It can be used via the `LinkingTo:` field in the `DESCRIPTION` field of an R
package --- and the R package infrastructure tools will then know how to set
include flags correctly on all architectures supported by R.Note that this can be used solely by headers-only Boost libraries. This
covers most of Boost, but excludes some libraries which require linking for
parts or all of their functionality.### Coverage
As of release 1.84.0-0, the following Boost libraries are included:
> accumulators algorithm align any atomic beast bimap bind circular_buffer
> compute concept config container date_time detail dynamic_bitset exception
> flyweight foreach functional fusion geometry graph heap icl integer
> interprocess intrusive io iostreams iterator lambda2 math move mp11 mpl
> multiprecision numeric pending phoenix polygon preprocessor process
> propery_tree qvm random range scope_exit smart_ptr sort spirit tuple
> type_traits typeof unordered url utility uuid### Example
The [Rcpp Gallery](https://gallery.rcpp.org) contains [several
examples](https://gallery.rcpp.org/tags/boost/) under its `boost` tag including the introductory
[first](https://gallery.rcpp.org/articles/a-first-boost-example/) and
[second](https://gallery.rcpp.org/articles/a-second-boost-example/). From the
[first](https://gallery.rcpp.org/articles/a-first-boost-example/), a simple example to compute the
greatest common demoninator of two integers follows:```c++
// [[Rcpp::depends(BH)]]#include
#include// [[Rcpp::export]]
int computeGCD(int a, int b) {
return boost::math::gcd(a, b);
}
```Saving it as `boostExample.cpp` and simple sourcing this `Rcpp::sourceCpp("boostExample.cpp")`
produces the function `computeGCD()`. See the [Rcpp Gallery](https://gallery.rcpp.org) for more
examples.### See Also
The [mailing list](https://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/boostheaders-devel)
at [R-Forge](https://r-forge.r-project.org/) is a good place for questions,
comments and general discussion. The [issue tracker](https://github.com/eddelbuettel/bh/issues)
can be used for bugs.### Updating
We aim to maintain this package in a somewhat conservative fashion and do not always
immediately jump the newest Boost releases. Rather, we (used to) start from the
[Debian sources for Boost](https://packages.debian.org/sid/libboost-all-dev)
to ensure that we work with a version that is at the same time current yet
mature. But on occassion, and as needed, and more recently, we will also go
directly to Boost releases.In general, we plan to keep the package up-to-date with [Boost](https://www.boost.org/)
upstream, but will not necessarily follow each and every new release as we
also value the merits of relative release stability.If needed, the script `local/script/CreateBoost.sh` can be used to update a forked
version to a newer version of [Boost](https://www.boost.org/).### But what about the size?
That used to be a concern, and we wrote:
> The repo has a large footprint. We know. We erroneously thought that committing
> the Boost tarballs would be a good idea. It wasn't. First attempts at pruning
> the history [using bfg](https://rtyley.github.io/bfg-repo-cleaner/) were not that
> successful. If someone has a script doing this well we would take another
> look.
>
> Otherwise we recommend to just start from
> [CreateBoost.sh](https://github.com/eddelbuettel/bh/blob/master/local/scripts/CreateBoost.sh).and lo and behold, we got help via
[this script](https://github.com/eddelbuettel/bh/blob/master/local/scripts/git-remove.sh) as
[discussed here](https://github.com/eddelbuettel/bh/issues/34). The old tarballs are now removed;
six commits were filtered and the repo has a much saner size so it can be forked more easily.### Authors
Dirk Eddelbuettel, Jay Emerson and Michael Kane
## License
This package is provided under the same license as Boost itself, the BSL-1.0