Added changes to remove debug print plus some code comments
This commit is contained in:
@@ -65,25 +65,21 @@ namespace Opm { namespace RestartIO { namespace Helpers {
|
||||
const Opm::SummaryState& sumState,
|
||||
const std::vector<int>& inteHead);
|
||||
|
||||
/// Retrieve Integer Group Data Array.
|
||||
const std::vector<int>& getIGroup() const
|
||||
{
|
||||
return this->iGroup_.data();
|
||||
}
|
||||
|
||||
/// Retrieve Floating-Point (Real) Group Data Array.
|
||||
const std::vector<float>& getSGroup() const
|
||||
{
|
||||
return this->sGroup_.data();
|
||||
}
|
||||
|
||||
/// Retrieve Floating-Point (Double Precision) Group Data Array.
|
||||
const std::vector<double>& getXGroup() const
|
||||
{
|
||||
return this->xGroup_.data();
|
||||
}
|
||||
|
||||
/// Retrieve Character Group Data Array.
|
||||
const std::vector<CharArrayNullTerm<8>>& getZGroup() const
|
||||
{
|
||||
return this->zGroup_.data();
|
||||
|
||||
@@ -75,7 +75,6 @@ void GroupTree::updateSeqIndex( const std::string& name, const std::string& othe
|
||||
// add code to set an index that determine the sequence of the groups
|
||||
// defined in the group tree
|
||||
size_t index = this->m_nameSeqIndMap.size();
|
||||
std::cout << "GroupTree::update - index: " << index << " name: " << name << " other_parent: " << other_parent << std::endl;
|
||||
auto name_itr = this->m_nameSeqIndMap.find(name);
|
||||
if (name_itr == this->m_nameSeqIndMap.end()) {
|
||||
this->m_nameSeqIndMap.insert(std::make_pair(name, index));
|
||||
|
||||
Reference in New Issue
Block a user