20 lines
375 B
C++
20 lines
375 B
C++
//
|
|
// Created by dominik on 8/12/24.
|
|
//
|
|
|
|
#ifndef RWSIM_TIMESDELTA_H
|
|
#define RWSIM_TIMESDELTA_H
|
|
|
|
#include "base.h"
|
|
|
|
class DeltaDistribution final : public Distribution {
|
|
public:
|
|
DeltaDistribution(double, std::mt19937_64&);
|
|
explicit DeltaDistribution(std::mt19937_64 &rng);
|
|
|
|
void initialize() override;
|
|
void draw_tau() override;
|
|
};
|
|
|
|
#endif //RWSIM_TIMESDELTA_H
|