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
!448
Draft: Resolve "Implementation of new nodes creation"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Draft: Resolve "Implementation of new nodes creation"
454-implementation-of-new-nodes-creation
into
devel
Overview
2
Commits
457
Pipelines
462
Changes
2
Open
Joan Vallvé Navarro
requested to merge
454-implementation-of-new-nodes-creation
into
devel
3 years ago
Overview
2
Commits
457
Pipelines
462
Changes
2
Expand
Closes
#454
,
#318
,
#364
,
#449
,
#381
,
#376
,
#208
,
#485
Edited
11 months ago
by
Joan Vallvé Navarro
0
0
Merge request reports
Viewing commit
93020bf6
Prev
Next
Show latest version
2 files
+
10
−
9
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
93020bf6
[skip ci] applied clang format
· 93020bf6
cont-integration
authored
1 month ago
src/problem/problem.cpp
+
3
−
2
Options
@@ -543,8 +543,9 @@ void Problem::emplaceStatesToFrame(FrameBasePtr _frame_ptr, const VectorComposit
if
(
not
_frame_ptr
)
throw
std
::
runtime_error
(
"Problem::emplaceStatesToFrame: the provided frame is nullptr"
);
if
(
not
frame_types_
.
has
(
_frame_states
.
getKeys
()))
throw
std
::
runtime_error
(
"Problem::emplaceStatesToFrame: any unknown type. Asked for key "
+
_frame_states
.
getKeys
()
+
" but problem only know the types of "
+
frame_types_
.
getKeys
());
throw
std
::
runtime_error
(
"Problem::emplaceStatesToFrame: any unknown type. Asked for key "
+
_frame_states
.
getKeys
()
+
" but problem only know the types of "
+
frame_types_
.
getKeys
());
// emplace missing keys
for
(
auto
key
:
_frame_states
.
getKeys
())
Loading