Merge branch 'master' into gravity-in-wells

This commit is contained in:
Bård Skaflestad 2012-10-18 10:58:28 +02:00
commit 37d54be703
2 changed files with 2 additions and 1 deletions

View File

@ -73,6 +73,7 @@ namespace Opm
if (cell == grid_.face_cells[2*face]) {
face_flux = flux_[face];
} else {
ASSERT(cell == grid_.face_cells[2*face + 1]);
face_flux = -flux_[face];
}
for (int dd = 0; dd < dim; ++dd) {

View File

@ -465,7 +465,7 @@ BOOST_AUTO_TEST_CASE(test_VelocityInterpolationConstant)
testConstantVelRepro2d<VelocityInterpolationConstant>();
testConstantVelReproPyramid<VelocityInterpolationConstant>();
testConstantVelReproIrreg2d<VelocityInterpolationConstant>();
// testConstantVelReproIrregPrism<VelocityInterpolationConstant>(); // We should verify if this is expected to fail or not.
testConstantVelReproIrregPrism<VelocityInterpolationConstant>();
}
BOOST_AUTO_TEST_CASE(test_VelocityInterpolationECVI)