On 09/25/2018 08:33 AM, Michał Wichrowski wrote:
>    multigrids_sc_pointers[level] =  new Multigrid<LevelVectorType >(
>      mg_matrix_sc,
>      mg_coarse_sc,
> mg_transfer_sc,
> mg_smoother_sc,
> mg_smoother_sc);

This won't compile. You'll have to write this as

multigrids_sc_pointers[level] =
   std_cxx14::make_unique<Multigrid<LevelVectorType>>(
                                    mg_matrix_sc,
                                    mg_coarse_sc,
                                        mg_transfer_sc,
                                        mg_smoother_sc,
                                        mg_smoother_sc);

Best
  W.

-- 
------------------------------------------------------------------------
Wolfgang Bangerth          email:                 [email protected]
                            www: http://www.math.colostate.edu/~bangerth/

-- 
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 [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to