Hi Ivan,
thanks for your answer. That solved the problem indeed.
However, lets say I put end = 2000, using ParallelSubmit it takes 2 seconds to compute the result. While it barely takes any time when I run
Reap[For[t = 0, t < end, t++, Sow[t]]]
without using ParallelSubmit.
Any Idea why that might be slower?