Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openscenario1-engine
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
Eclipse openpass
openscenario1-engine
Merge requests
!227
fix: Replace first_run static bool with class variable
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix: Replace first_run static bool with class variable
replace_static_variable_with_member_variable_in_engine
into
main
Overview
0
Commits
1
Pipelines
1
Changes
2
Merged
Elnagdy Elnagdy
requested to merge
replace_static_variable_with_member_variable_in_engine
into
main
3 months ago
Overview
0
Commits
1
Pipelines
1
Changes
2
Expand
Fix of this issue
#63 (closed)
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
0412c0bf
1 commit,
3 months ago
2 files
+
5
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
engine/include/OpenScenarioEngine/OpenScenarioEngine.h
+
2
−
1
Options
/********************************************************************************
* Copyright (c) 2021-202
4
Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
* Copyright (c) 2021-202
5
Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
* Copyright (c) 2022-2023 Ansys, Inc.
*
* This program and the accompanying materials are made available under the
@@ -184,6 +184,7 @@ private:
ScenarioDefinitionPtr
scenario_definition_ptr_
{
nullptr
};
bool
finished_
{
false
};
bool
first_run_
{
true
};
std
::
optional
<
unsigned
int
>
random_seed_value_override_
{
std
::
nullopt
};
};
Loading