I wonder whether following methodology is correct.
I need to introduce concurrent processing to my simulating application.I want to use Mersenne Twister random generator. I wonder whether I can create a few instances of this generator (initialized with different seed, base on time of creation) and use them in separated threads. The problem is whether there will be no connection between values I get from multiple instances of random generators initialized with different seeds.
Do you have any experience with it / advices ?
(I know that this question might be asked in stackoverflow however I think that is a little bit more mathematical problem).