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
50e3f985
Commit
50e3f985
authored
6 years ago
by
Joaquim Casals Buñuel
Browse files
Options
Downloads
Patches
Plain Diff
Removed solver_manager.h from ceres_wrapper/
parent
90953f6b
No related branches found
No related tags found
No related merge requests found
Pipeline
#2858
passed
6 years ago
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/base/ceres_wrapper/solver_manager.h
+0
-64
0 additions, 64 deletions
include/base/ceres_wrapper/solver_manager.h
with
0 additions
and
64 deletions
include/base/ceres_wrapper/solver_manager.h
deleted
100644 → 0
+
0
−
64
View file @
90953f6b
#ifndef SOLVER_MANAGER_H_
#define SOLVER_MANAGER_H_
//wolf includes
#include
"base/common/wolf.h"
#include
"base/state_block/state_block.h"
#include
"base/factor/factor_base.h"
namespace
wolf
{
/** \brief Enumeration of covariance blocks to be computed
*
* Enumeration of covariance blocks to be computed
*
*/
typedef
enum
{
ALL
,
///< All blocks and all cross-covariances
ALL_MARGINALS
,
///< All marginals
ROBOT_LANDMARKS
///< marginals of landmarks and current robot pose plus cross covariances of current robot and all landmarks
}
CovarianceBlocksToBeComputed
;
WOLF_PTR_TYPEDEFS
(
SolverManager
);
/** \brief Solver manager for WOLF
*
*/
class
SolverManager
{
protected:
ProblemPtr
wolf_problem_
;
public:
SolverManager
(
ProblemPtr
_wolf_problem
);
virtual
~
SolverManager
();
virtual
std
::
string
solve
(
const
unsigned
int
&
_report_level
)
=
0
;
virtual
void
computeCovariances
(
CovarianceBlocksToBeComputed
_blocks
=
ROBOT_LANDMARKS
)
=
0
;
virtual
void
computeCovariances
(
const
StateBlockPtrList
&
st_list
)
=
0
;
virtual
void
update
();
virtual
ProblemPtr
getProblem
();
private:
virtual
void
addFactor
(
FactorBasePtr
_fac_ptr
)
=
0
;
virtual
void
removeFactor
(
FactorBasePtr
_fac_ptr
)
=
0
;
virtual
void
addStateBlock
(
StateBlockPtr
_st_ptr
)
=
0
;
virtual
void
removeStateBlock
(
StateBlockPtr
_st_ptr
)
=
0
;
virtual
void
updateStateBlockStatus
(
StateBlockPtr
_st_ptr
)
=
0
;
};
}
// namespace wolf
#endif
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