Static bool first_run in OpenScenarioEngine::ResetProbabilityService
When reinvoking OSC Engine a second time from a Simulator with a random_seed in the constructor of OSC Engine. OSC Engine will increment this random_seed internally https://gitlab.eclipse.org/eclipse/openpass/openscenario1_engine/-/blob/main/engine/src/OpenScenarioEngine.cpp#L143. This behavior is undesired but happens due to the fact that first_run is a static variable. Maybe changing the variable to a class member can be the solution.