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
!463
Draft: Resolve "Problem local_reference_"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Draft: Resolve "Problem local_reference_"
479-problem-local_reference_
into
devel
Overview
0
Commits
1
Pipelines
3
Changes
2
Open
Joan Vallvé Navarro
requested to merge
479-problem-local_reference_
into
devel
2 years ago
Overview
0
Commits
1
Pipelines
3
Changes
2
Expand
Closes
#479
0
0
Merge request reports
Compare
devel
devel (HEAD)
and
latest version
latest version
a07758d6
1 commit,
2 years ago
2 files
+
17
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
include/core/problem/problem.h
+
10
−
2
Options
@@ -91,11 +91,19 @@ class Problem : public std::enable_shared_from_this<Problem>
mutable
std
::
mutex
mut_transform_
;
private:
// CAUTION: THESE METHODS ARE PRIVATE, DO NOT MAKE THEM PUBLIC !!
Problem
(
const
std
::
string
&
_frame_structure
,
SizeEigen
_dim
,
MapBasePtr
_map
);
// USE create() below !!
Problem
(
const
std
::
string
&
_frame_structure
,
SizeEigen
_dim
,
MapBasePtr
_map
,
StateBlockPtr
_local_reference_p
=
nullptr
,
StateBlockPtr
_local_reference_o
=
nullptr
);
// USE create() below !!
void
setup
();
public:
static
ProblemPtr
create
(
const
std
::
string
&
_frame_structure
,
SizeEigen
_dim
,
MapBasePtr
_map
=
std
::
make_shared
<
MapBase
>
());
// USE THIS AS A CONSTRUCTOR!
static
ProblemPtr
create
(
const
std
::
string
&
_frame_structure
,
SizeEigen
_dim
,
MapBasePtr
_map
=
std
::
make_shared
<
MapBase
>
(),
StateBlockPtr
_local_reference_p
=
nullptr
,
StateBlockPtr
_local_reference_o
=
nullptr
);
// USE THIS AS A CONSTRUCTOR!
static
ProblemPtr
autoSetup
(
ParamsServer
&
_server
);
virtual
~
Problem
();
Loading