Guest User

Untitled

a guest
Mar 23rd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. np.random.seed(3)
  2. print(np.random.get_state()[0],str(np.random.get_state()[1][:5]))
  3. delta = 7
  4. for t in [3,7,8, 9, 10]:
  5. print('-'*20)
  6. x = np.power(2, t)
  7. np.random.seed(3)
  8. a =np.arange(x-delta)
  9. np.random.shuffle(a)
  10. print(x-delta, np.random.get_state()[0],str(np.random.get_state()[1][:5]))
  11. np.random.seed(3)
  12. a =np.arange(x)
  13. np.random.shuffle(a)
  14. print(x, np.random.get_state()[0],str(np.random.get_state()[1][:5]))
  15. np.random.seed(3)
  16. a =np.arange(x+delta)
  17. np.random.shuffle(a)
  18. print(x+delta, np.random.get_state()[0],str(np.random.get_state()[1][:5]))
  19.  
  20. MT19937 [ 3 1142332464 3889748055 3734916391 3619205944]
  21. --------------------
  22. 1 MT19937 [ 3 1142332464 3889748055 3734916391 3619205944]
  23. 8 MT19937 [2266350226 522119106 3046352735 732669494 2548320174]
  24. 15 MT19937 [2266350226 522119106 3046352735 732669494 2548320174]
  25. --------------------
  26. 121 MT19937 [2266350226 522119106 3046352735 732669494 2548320174]
  27. 128 MT19937 [2266350226 522119106 3046352735 732669494 2548320174]
  28. 135 MT19937 [2266350226 522119106 3046352735 732669494 2548320174]
  29. --------------------
  30. 249 MT19937 [2266350226 522119106 3046352735 732669494 2548320174]
  31. 256 MT19937 [2266350226 522119106 3046352735 732669494 2548320174]
  32. 263 MT19937 [2266350226 522119106 3046352735 732669494 2548320174]
  33. --------------------
  34. 505 MT19937 [3210938781 3041878801 2995991318 2989044749 4131327847]
  35. 512 MT19937 [3210938781 3041878801 2995991318 2989044749 4131327847]
  36. 519 MT19937 [3210938781 3041878801 2995991318 2989044749 4131327847]
  37. --------------------
  38. 1017 MT19937 [2643427254 2135041851 1650564992 768318449 937622320]
  39. 1024 MT19937 [2643427254 2135041851 1650564992 768318449 937622320]
  40. 1031 MT19937 [2643427254 2135041851 1650564992 768318449 937622320]
Add Comment
Please, Sign In to add comment