Thanks Wolfgang,
all is now working as it should
Andrew
On Wednesday 17 December 2008 15:06:29 Wolfgang Bangerth wrote:
> > I have implemented the solution you suggest whereby I construct a
> > std::vector of FEValuesExtractors::Scalar for treating the shape
> > functions associated with the slip systems.
> >
> > const FEValuesExtractors::Vector displacements(0);
> > std::vector<FEValuesExtractors::Scalar> slips;
> > for (unsigned int alpha = 0; alpha < no_slips; alpha++) {
> > const unsigned int count = deal_II_dimension + alpha;
> > slips.push_back(FEValuesExtractors::Scalar(count));
> > }
> >
> > The problem is I get the following error (associated with the line
> > containing the push_back)
>
> I assume you are working from our svn version, right? In that case simply
> update, it should work now (extractors weren't copyable, but should be
> now).
>
> Best
> Wolfgang
>
> -------------------------------------------------------------------------
> Wolfgang Bangerth email: [email protected]
> www: http://www.math.tamu.edu/~bangerth/
_______________________________________________