Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gnss
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
plugins
gnss
Commits
23dbc181
Commit
23dbc181
authored
10 years ago
by
acoromin
Browse files
Options
Downloads
Patches
Plain Diff
Buf fixed that allocated too much memory for state vector
parent
23b5254c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/map_base.cpp
+1
-1
1 addition, 1 deletion
src/map_base.cpp
src/wolf_problem.cpp
+1
-4
1 addition, 4 deletions
src/wolf_problem.cpp
with
2 additions
and
5 deletions
src/map_base.cpp
+
1
−
1
View file @
23dbc181
...
...
@@ -3,7 +3,7 @@
MapBase
::
MapBase
()
:
NodeLinked
(
MID
,
"MAP"
)
{
std
::
cout
<<
"MapBase::MapBase(): "
<<
__LINE__
<<
std
::
endl
;
//
std::cout << "MapBase::MapBase(): " << __LINE__ << std::endl;
}
MapBase
::~
MapBase
()
...
...
This diff is collapsed.
Click to expand it.
src/wolf_problem.cpp
+
1
−
4
View file @
23dbc181
...
...
@@ -11,11 +11,8 @@ WolfProblem::WolfProblem(unsigned int _size) :
{
// map_ptr_ = new MapBase;
// trajectory_ptr_ = new TrajectoryBase;
std
::
cout
<<
"WolfProblem::WolfProblem(): "
<<
__LINE__
<<
std
::
endl
;
map_ptr_
->
linkToUpperNode
(
this
);
std
::
cout
<<
"WolfProblem::WolfProblem(): "
<<
__LINE__
<<
std
::
endl
;
map_ptr_
->
linkToUpperNode
(
this
);
trajectory_ptr_
->
linkToUpperNode
(
this
);
std
::
cout
<<
"WolfProblem::WolfProblem(): "
<<
__LINE__
<<
std
::
endl
;
}
WolfProblem
::
WolfProblem
(
TrajectoryBase
*
_trajectory_ptr
,
MapBase
*
_map_ptr
,
unsigned
int
_size
)
:
...
...
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