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
Commits
05207b48
Commit
05207b48
authored
6 years ago
by
Joan Vallvé Navarro
Browse files
Options
Downloads
Patches
Plain Diff
ups!
parent
74168f92
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#3307
failed
6 years ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/solver/solver_manager.cpp
+2
-2
2 additions, 2 deletions
src/solver/solver_manager.cpp
with
2 additions
and
2 deletions
src/solver/solver_manager.cpp
+
2
−
2
View file @
05207b48
...
...
@@ -162,12 +162,12 @@ Scalar* SolverManager::getAssociatedMemBlockPtr(const StateBlockPtr& state_ptr)
bool
SolverManager
::
isStateBlockRegistered
(
const
StateBlockPtr
&
state_ptr
)
{
return
state_blocks_
.
find
(
state_ptr
)
!=
state_blocks_
.
end
()
&&
isStateBlockRegisteredDerived
();
return
state_blocks_
.
find
(
state_ptr
)
!=
state_blocks_
.
end
()
&&
isStateBlockRegisteredDerived
(
state_ptr
);
}
bool
SolverManager
::
isFactorRegistered
(
const
FactorBasePtr
&
fac_ptr
)
{
return
isFactorRegisteredDerived
();
return
isFactorRegisteredDerived
(
fac_ptr
);
}
}
// namespace wolf
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment