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
!344
WIP: Resolve "Fixing and improving QR manager"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
WIP: Resolve "Fixing and improving QR manager"
295-fixing-and-improving-qr-manager
into
devel
Overview
0
Commits
7
Pipelines
9
Changes
3
Closed
Mederic Fourmy
requested to merge
295-fixing-and-improving-qr-manager
into
devel
5 years ago
Overview
0
Commits
7
Pipelines
9
Changes
3
Expand
Closes
#295
0
0
Merge request reports
Viewing commit
b4cb9a90
Prev
Next
Show latest version
3 files
+
45
−
45
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
b4cb9a90
Fix some API issues and add FIXMEs about state sizes
· b4cb9a90
Joan Solà Ortega
authored
5 years ago
include/core/ceres_wrapper/qr_manager.h
+
7
−
7
Options
@@ -36,23 +36,23 @@ class QRManager : public SolverManager
virtual
std
::
string
solve
(
const
unsigned
int
&
_report_level
);
virtual
void
computeCovariances
(
CovarianceBlocksToBeComputed
_blocks
=
CovarianceBlocksToBeComputed
::
ROBOT_LANDMARKS
);
virtual
void
computeCovariances
(
CovarianceBlocksToBeComputed
_blocks
=
CovarianceBlocksToBeComputed
::
ROBOT_LANDMARKS
)
override
;
virtual
void
computeCovariances
(
const
std
::
vector
<
StateBlockPtr
>&
_sb_list
);
virtual
void
computeCovariances
(
const
std
::
vector
<
StateBlockPtr
>&
_sb_list
)
override
;
private:
bool
computeDecomposition
();
virtual
void
addFactor
(
FactorBasePtr
_fac_ptr
);
virtual
void
addFactor
(
const
FactorBasePtr
&
_fac_ptr
)
override
;
virtual
void
removeFactor
(
FactorBasePtr
_fac_ptr
);
virtual
void
removeFactor
(
const
FactorBasePtr
&
_fac_ptr
)
override
;
virtual
void
addStateBlock
(
StateBlockPtr
_st_ptr
);
virtual
void
addStateBlock
(
const
StateBlockPtr
&
_st_ptr
)
override
;
virtual
void
removeStateBlock
(
StateBlockPtr
_st_ptr
);
virtual
void
removeStateBlock
(
const
StateBlockPtr
&
_st_ptr
)
override
;
virtual
void
updateStateBlockStatus
(
StateBlockPtr
_st_ptr
);
virtual
void
updateStateBlockStatus
(
const
StateBlockPtr
&
_st_ptr
)
override
;
void
relinearizeFactor
(
FactorBasePtr
_fac_ptr
);
};
Loading