#39 #40 git add for last commit

This commit is contained in:
toni
2017-11-15 17:46:06 +01:00
parent c8063bc862
commit 95a5c8f34f
49 changed files with 4661 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
#ifndef ARTIFICIALDISTRIBUTION_H
#define ARTIFICIALDISTRIBUTION_H
#include <vector>
#include "../Particle.h"
namespace SMC {
/**
* interface for artificial distributions
*/
template <typename State>
class ArtificialDistribution {
public:
/** calculate the probability/density*/
virtual double calculate(Particle<State> const& particle) = 0;
};
}
#endif // ARTIFICIALDISTRIBUTION_H