cpp/times/delta.h
Dominik Demuth 17f95627a9 first commit
2024-08-16 19:55:27 +02:00

19 lines
343 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 draw_tau() override;
};
#endif //RWSIM_TIMESDELTA_H