Home | History | Annotate | Download | only in rand.adapt.shuf
      1 //===----------------------------------------------------------------------===//
      2 //
      3 //                     The LLVM Compiler Infrastructure
      4 //
      5 // This file is dual licensed under the MIT and the University of Illinois Open
      6 // Source Licenses. See LICENSE.TXT for details.
      7 //
      8 //===----------------------------------------------------------------------===//
      9 
     10 // <random>
     11 
     12 // template<class Engine, size_t k>
     13 // class shuffle_order_engine
     14 
     15 // void seed(result_type s = default_seed);
     16 
     17 #include <random>
     18 #include <cassert>
     19 
     20 void
     21 test1()
     22 {
     23     for (int s = 0; s < 20; ++s)
     24     {
     25         typedef std::knuth_b E;
     26         E e1(s);
     27         E e2;
     28         e2.seed(s);
     29         assert(e1 == e2);
     30     }
     31 }
     32 
     33 int main()
     34 {
     35     test1();
     36 }
     37