tmp/tmpqymadirm/{from.md → to.md}
RENAMED
|
@@ -14,27 +14,26 @@ $$%
|
|
| 14 |
{\left( 1 + \frac{m x}{n} \right)}^{-(m+n)/2}
|
| 15 |
\; \mbox{.}$$
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
template<class RealType = double>
|
| 19 |
-
|
| 20 |
-
{
|
| 21 |
public:
|
| 22 |
// types
|
| 23 |
-
|
| 24 |
-
|
| 25 |
|
| 26 |
// constructor and reset functions
|
| 27 |
explicit fisher_f_distribution(RealType m = 1, RealType n = 1);
|
| 28 |
explicit fisher_f_distribution(const param_type& parm);
|
| 29 |
void reset();
|
| 30 |
|
| 31 |
// generating functions
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
|
| 37 |
// property functions
|
| 38 |
RealType m() const;
|
| 39 |
RealType n() const;
|
| 40 |
param_type param() const;
|
|
|
|
| 14 |
{\left( 1 + \frac{m x}{n} \right)}^{-(m+n)/2}
|
| 15 |
\; \mbox{.}$$
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
template<class RealType = double>
|
| 19 |
+
class fisher_f_distribution {
|
|
|
|
| 20 |
public:
|
| 21 |
// types
|
| 22 |
+
using result_type = RealType;
|
| 23 |
+
using param_type = unspecified;
|
| 24 |
|
| 25 |
// constructor and reset functions
|
| 26 |
explicit fisher_f_distribution(RealType m = 1, RealType n = 1);
|
| 27 |
explicit fisher_f_distribution(const param_type& parm);
|
| 28 |
void reset();
|
| 29 |
|
| 30 |
// generating functions
|
| 31 |
+
template<class URBG>
|
| 32 |
+
result_type operator()(URBG& g);
|
| 33 |
+
template<class URBG>
|
| 34 |
+
result_type operator()(URBG& g, const param_type& parm);
|
| 35 |
|
| 36 |
// property functions
|
| 37 |
RealType m() const;
|
| 38 |
RealType n() const;
|
| 39 |
param_type param() const;
|