| Thread Previous • Date Previous • Date Next • Thread Next |
void Data::update(const ufc::cell& ufc_cell, const double* x)
{
_ufc_cell = &ufc_cell;
this->x = x;
}
but should this be
void Data::update(const ufc::cell& ufc_cell, const double* x)
{
_dolfin_cell = 0;
_ufc_cell = &ufc_cell;
_facet = -1;
this->x = x;
}
?
Garth
| Thread Previous • Date Previous • Date Next • Thread Next |