← Back to team overview

dolfin team mailing list archive

Re: DofMap

 

On Thu, Aug 14, 2008 at 06:52:20PM +0100, Garth N. Wells wrote:
> What data structure do we plan to use to store the dof map inside 
> DofMap? A plain 1D array of unsigned integers with an offset for each cell?
> 
> I'm asking because I'd like to try some renumbering strategies which if 
> we settle on a data structure for the dof map won't interfere with the 
> current work of Anders on the parallel BuildDofMap.
> 
> Garth

Until just recently, we used an

 uint** dof_map

but we changed it to just

 uint* dof_map

with an offset for each cell (which is just cell.index()*local_dimension()).

-- 
Anders

Attachment: signature.asc
Description: Digital signature


References