stan icon indicating copy to clipboard operation
stan copied to clipboard

remove unconventional of Eigen from chains.hpp

Open bob-carpenter opened this issue 10 years ago • 0 comments

Right now, mcmc/chains.hpp is abusing Eigen to create Eigen vectors of std::string and Eigen vectors of Eigen vectors.

  • [x] replace Eigen vectors of strings with std::vector<std::string>
  • [ ] replace Eigen vector of vectors with Eigen matrix
  • [ ] review rest of code so that Eigen is only used for vectors or matrices of double values
  • [ ] use Eigen::Map where possible to allow for use without allocating memory
  • [ ] include an interrupt callback

bob-carpenter avatar Jun 03 '15 20:06 bob-carpenter