Exemple #1
0
/**
 * \copydoc Simulation::updateParameters()
 */
void StatisticsSimulation::updateParameters(const Eigen::VectorXd& rTheta) {
// Update the model
	updateLocalParameters(rTheta);
// Propagate changes to the simulations
	updateEpochSimulations();
}
/**
 * \copydoc Simulation::updateParameters()
 */
void MetropolisHastingsSimulation::updateParameters(
		const Eigen::VectorXd& rTheta) {
	updateLocalParameters(rTheta);
}