We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c54834 commit 7716c3cCopy full SHA for 7716c3c
opm/models/discretization/common/fvbaseelementcontext.hh
@@ -153,9 +153,17 @@ public:
153
elemPtr_ = &elem;
154
155
// update the finite element geometry
156
- stencil_.updatePrimaryTopology(elem);
157
-
158
- dofVars_.resize(stencil_.numPrimaryDof());
+ #pragma omp critical
+ {
+ std::cout << "u" << std::endl;
159
+ stencil_.updatePrimaryTopology(elem);
160
+ auto numDof = stencil_.numPrimaryDof();
161
+ std::cout << dofVars_.size()
162
+ << "-" << numDof
163
+ << std::endl;
164
+ dofVars_.resize(numDof);
165
+ std::cout << "x" << std::endl;
166
+ }
167
}
168
169
/*!
0 commit comments