//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template // class weibull_distribution // { // class param_type; #include #include #include int main() { { typedef std::weibull_distribution<> D; typedef D::param_type param_type; param_type p; assert(p.a() == 1); assert(p.b() == 1); } { typedef std::weibull_distribution<> D; typedef D::param_type param_type; param_type p(10); assert(p.a() == 10); assert(p.b() == 1); } { typedef std::weibull_distribution<> D; typedef D::param_type param_type; param_type p(10, 5); assert(p.a() == 10); assert(p.b() == 5); } }