Changeset 1096


Ignore:
Timestamp:
Oct 9, 2013 1:08:05 PM (10 years ago)
Author:
vondreele
Message:

oops - need the numpy random seed routine

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIImath.py

    r1095 r1096  
    24212421def worker(iCyc,data,RBdata,reflType,reflData,covData,out_q,nprocess=-1):
    24222422    outlist = []
    2423     rn.seed(int(time.time())%100000+nprocess)   #make sure each process has a different random start
     2423    random.seed(int(time.time())%100000+nprocess)   #make sure each process has a different random start
    24242424    for n in range(iCyc):
    24252425        result = mcsaSearch(data,RBdata,reflType,reflData,covData,None)
Note: See TracChangeset for help on using the changeset viewer.