Hi Daniel, > dealii::Vector<unsigned int>
Vector is not instantiated for unsigned int at all, only for floating point data types. Are you sure you need a vector of ints? You can always copy the MPI vector into a dealii::Vector<double> and then copy it element by element into any other data structure. -- Timo Heister http://num.math.uni-goettingen.de/~heister _______________________________________________ dealii mailing list http://poisson.dealii.org/mailman/listinfo/dealii
