Removed print statement

This commit is contained in:
Kristian Flikka 2014-01-29 12:30:03 +01:00
parent bca4242da9
commit fabcb45d4c

View File

@ -353,7 +353,6 @@ namespace Opm
assert(grid.dimensions == 3); assert(grid.dimensions == 3);
for (int w = 0; w < num_wells; ++w) { for (int w = 0; w < num_wells; ++w) {
num_perfs += wellperf_data[w].size(); num_perfs += wellperf_data[w].size();
printf("New version; num_perfs %d \n", num_perfs);
if (well_data[w].reference_bhp_depth < 0.0) { if (well_data[w].reference_bhp_depth < 0.0) {
// It was defaulted. Set reference depth to minimum perforation depth. // It was defaulted. Set reference depth to minimum perforation depth.
double min_depth = 1e100; double min_depth = 1e100;
@ -944,7 +943,6 @@ namespace Opm
assert(grid.dimensions == 3); assert(grid.dimensions == 3);
for (int w = 0; w < num_wells; ++w) { for (int w = 0; w < num_wells; ++w) {
num_perfs += wellperf_data[w].size(); num_perfs += wellperf_data[w].size();
printf("Old version; num_perfs %d \n", num_perfs);
if (well_data[w].reference_bhp_depth < 0.0) { if (well_data[w].reference_bhp_depth < 0.0) {
// It was defaulted. Set reference depth to minimum perforation depth. // It was defaulted. Set reference depth to minimum perforation depth.
double min_depth = 1e100; double min_depth = 1e100;