Skip to content

Commit

Permalink
Per issue #1899: added some temporary print statements for debugging. SL
Browse files Browse the repository at this point in the history
  • Loading branch information
Seth Linden committed Oct 1, 2021
1 parent a8e3d0e commit 4f62e4b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions met/src/basic/vx_util/num_array.cc
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,8 @@ int NumArray::has(double d, bool forward) const
}
}

cout << "found = " << found << endl;

return ( found );

}
Expand Down Expand Up @@ -341,8 +343,12 @@ void NumArray::add(double d)

{

//cout << "In num_array.cc add(double), CHECK" << endl;

extend(Nelements + 1, false);

cout << "d = " << d << endl;

e.push_back(d);

Sorted = false;
Expand All @@ -359,6 +365,8 @@ void NumArray::add(const NumArray & a)

{

//cout << "In num_array.cc add(NumArray), CHECK" << endl;

extend(Nelements + a.Nelements);

int j;
Expand Down

0 comments on commit 4f62e4b

Please sign in to comment.