Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
RCE Workflow
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
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
UNICADO
RCE Workflow
Merge requests
!19
rce_workflow (schueltke):
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
rce_workflow (schueltke):
fix/adapt_create_mission_switches
into
develop
Overview
0
Commits
1
Pipelines
0
Changes
4
Merged
Florian Schültke
requested to merge
fix/adapt_create_mission_switches
into
develop
5 months ago
Overview
0
Commits
1
Pipelines
0
Changes
4
Expand
adapted paths according to MR
aircraft-design!52 (merged)
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
28817dc1
1 commit,
5 months ago
4 files
+
8
−
29
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
UNICADOworkflow/src/mission_study_loop/final_operations_of_study_loop.py
+
2
−
8
Options
@@ -158,14 +158,8 @@ def final_operations_of_study_loop(paths_and_names, control_settings, parameter_
function_name
,
frame_info
.
lineno
,
log_file_list
,
current_workflow_name
)
# Change switch from design mission to study mission, in order to create a study mission
create_mission_conf_xml_root
.
find
(
'
./program_settings/design_mission/write_mission_file/value
'
).
text
=
\
str
(
bool
(
0
)).
lower
()
create_mission_conf_xml_root
.
find
(
'
./program_settings/study_mission/write_mission_file/value
'
).
text
=
\
str
(
bool
(
0
)).
lower
()
# change requirementMission data
create_mission_conf_xml_root
.
find
(
'
./program_settings/write_requirement_mission/value
'
).
text
=
\
str
(
bool
(
1
)).
lower
()
# Change switch from study mission to requirement mission, in order to create a requirement mission
create_mission_conf_xml_root
.
find
(
'
./program_settings/mission_selector/value
'
).
text
=
"
requirements_mission
"
# write settings to configuration xml file
xml_tree
.
write
(
path
,
encoding
=
'
utf-8
'
)
Loading