Well, I guess it's a question of how one should interpret this sentence. 
Anyway, if you want to avoid calling reinit with extra parameters during 
assembling (might be simpler anyway) you can probably achieve the same 
thing by adding the same element twice to FECollection.
For  example:

fe_collection.push_back(FE_Q<dim>(fe_order1));
fe_collection.push_back(FE_Q<dim>(fe_order2));
fe_collection.push_back(FE_Q<dim>(fe_order2));

q_collection.push_back(QGauss<dim>(quad_order1);
q_collection.push_back(QGauss<dim>(quad_order2);
q_collection.push_back(QGauss<dim>(quad_order3);

Best
/Simon

-- 
The deal.II project is located at http://www.dealii.org/
For mailing list/forum options, see 
https://groups.google.com/d/forum/dealii?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"deal.II User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dealii+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to