Skip to content
Snippets Groups Projects
Commit 23dbc181 authored by acoromin's avatar acoromin
Browse files

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
......@@ -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()
......
......@@ -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) :
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment