diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2020-02-05 12:18:47 -0500 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2020-02-05 12:18:47 -0500 |
commit | fc8e263f7298b20f1281ff01c1d244d3fb1aac9b (patch) | |
tree | db4a1292553a8ad79aff9542582f955ea36790d1 | |
parent | 4289204eaf42ed7003578adeea720a6230919fbd (diff) | |
download | code-fc8e263f7298b20f1281ff01c1d244d3fb1aac9b.tar.gz code-fc8e263f7298b20f1281ff01c1d244d3fb1aac9b.tar.bz2 code-fc8e263f7298b20f1281ff01c1d244d3fb1aac9b.zip |
removed unused range type
-rw-r--r-- | hadamard_pt.hpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/hadamard_pt.hpp b/hadamard_pt.hpp index 593f1f2..724393f 100644 --- a/hadamard_pt.hpp +++ b/hadamard_pt.hpp @@ -14,12 +14,6 @@ public: virtual void after_step(bool, unsigned, double, double, const MCMC&, const MCMC&){}; }; -typedef struct range { - double β0; - double β1; - unsigned N; -} range; - class PT { private: Rng rng; |