Execute all children in case of Failure in ParallelNode
In the current state the parallel node executes all children. If one child returns Failure, this state is directly returned.
However this is problematic with thread parallel execution, since here the execution order within one tick may be random.
To ensure a deterministic behavior, all children must be executed in the tick, even one returns a Failure.