W dniu wtorek, 25 września 2018 20:59:41 UTC+2 użytkownik Wolfgang Bangerth 
napisał:
>
> 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] 
> <javascript:> 
>                             www: http://www.math.colostate.edu/~bangerth/ 
>

It works
Thank You
Michał

-- 
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