You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 6, 2018. It is now read-only.
Currently this uses an extra layer of abstract classes
class MarginalProposalVariance : public ProposalVariance { ... };
but since the only diff between Marginal and Joint is the type of the pv object (arma::mat vs double), it might be more straightforward to implement the get.pv(), adjust.pv as a template member functions. Only unsolved issue would be setting the type (and size for arma::mat) of pv.
Currently this uses an extra layer of abstract classes
but since the only diff between Marginal and Joint is the type of the pv object (arma::mat vs double), it might be more straightforward to implement the
get.pv(),adjust.pvas a template member functions. Only unsolved issue would be setting the type (and size for arma::mat) ofpv.