Summary of pull requests and commits.

This summary is divided into 3 parts (accorordered according to the main project goals

Overview

The following sections summarize the pull request and commits made for this project. They refer to different packages and repositories:

  1. RcppSMC: the main R package with its underlying C++ template library; PRs and commits refer to extensions of this template library
  2. SVmodelRcppSMC: an R package that illustrates how a potential user of RcppSMC can develop her own package quickly start implementing new algorithms that make use of the facilities implemented under 1.; taking the SV model as a toy example, ancestral line tracking and the Particle Gibbs algorithm are implemented
  3. SVmodelExamples: a demo repository of R scripts that run the implemented example facilities of SVmodelRcppSMC for different parameter setups and algorithmic settings

The final section Miscellaneous summarizes PRs and additions that were made during the project. They do not directly relate to the project goals but rather focus on minor “nice to have” additions such as the improvement of user output readability of existing package examples or updates to the documentation prior to a new release on CRAN that is currently discusses.

RcppSMC

Project Goal 1: tracking of ancestral lines

Add facilities that allow for tracking of ancestral lines

  1. Change history-element class:
    1. ancestorIndices: stores resampling indices
    2. SetAIndices: sets ancestorindices of historyelement object; overload history.Set() to also allow setting the ancestor indices
    3. GetAIndices: returns ancestorIndices of historyelement object
  2. Add three main functions to sampler.h:
    1. GetAPop: re-orders population elements stored in History according to ancestral lines; add some documentation
    2. GeALineInd: returns a vector of ancestor indices given particle index (of the final iteration)
    3. GetALineSpace: returns ancestral line (i.e. a vector of Space-class objects of length corresponding to the length of the History container) given particle index (of the final iteration)
  3. Add helper functions (optional):
    1. GetuRSIndices: returns current resampling indices
    2. GetuRSIndex: returns n’th element of current resampling indices
  4. Adjust sampler.h to allow for tracking of ancestral lines:
    1. switch htHistoryMode == HistoryType::AL added to enforce storage of ancestral lines; use “switch”-type cases for setting the historymode type
    2. uRSIndices are set to 0,1,...,N-1 if resampling is not performed; in case of htHistoryMode == HistoryType::AL this sets the ancestors correctly but is redundant if htHistoryMode == HistoryType::RAM
    3. add HistoryType::NONE to switch to avoid compiler warnings
  5. Update ChangeLog

Project Goal 2: support for conditional SMC

Conditional SMC

SVmodelRcppSMC

To save space, and since this is an accompanying R package with work preliminary for illustration purposes and not additions to the main RcppSMC library, an overview of commits is linked here..

SVmodelExamples

To save space, and since this is an accompanying repository with work preliminary for demo purposes and not additions to the main RcppSMC library, an overview of commits is linked here.

Miscellaneous

Add user output (convergence diagnostics) for PMMH example

Add missing documentation tononLinPMMH() (or moving documentation to roxygen)

Documentation and miscellaeneous

THIS PR IS WIP