Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
wolf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile_robotics
wolf_projects
wolf_lib
wolf
Merge requests
!305
WIP: Resolve "Do not use default YAML params"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
WIP: Resolve "Do not use default YAML params"
244-yaml-params-with-spaces-not-underscores
into
devel
Overview
2
Commits
24
Pipelines
14
Changes
1
Closed
Joan Solà Ortega
requested to merge
244-yaml-params-with-spaces-not-underscores
into
devel
5 years ago
Overview
2
Commits
24
Pipelines
14
Changes
1
Expand
Closes
#244 (closed)
Edited
5 years ago
by
Joan Solà Ortega
0
0
Merge request reports
Viewing commit
6440480c
Prev
Next
Show latest version
1 file
+
2
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
6440480c
Update hello_wolf_autoconf.cpp
· 6440480c
Joan Solà Ortega
authored
5 years ago
hello_wolf/hello_wolf_autoconf.cpp
+
2
−
1
Options
@@ -101,7 +101,7 @@ int main()
using
namespace
wolf
;
WOLF_TRACE
(
"======== CONFIGURE PROBLEM ======="
)
WOLF_TRACE
(
"======== CONFIGURE PROBLEM ======="
)
;
// Config file to parse. Here is where all the problem is defined:
std
::
string
file
=
std
::
string
(
_WOLF_ROOT_DIR
)
+
"/hello_wolf/hello_wolf_config.yaml"
;
@@ -110,6 +110,7 @@ int main()
ParserYAML
parser
=
ParserYAML
(
file
);
parser
.
parse
();
ParamsServer
server
=
ParamsServer
(
parser
.
getParams
(),
parser
.
sensorsSerialization
(),
parser
.
processorsSerialization
());
server
.
print
();
// Wolf problem: automatically build the left branch of the wolf tree from the contents of the params server:
ProblemPtr
problem
=
Problem
::
autoSetup
(
server
);
Loading