Re: [deal.II] Internal deal.II error when instantiating TrilinosWrappers::block_operator

2023-04-28 Thread Luca Heltai
Dear Lucas, take a look at the tests directory of deal.II: https://github.com/dealii/dealii/blob/master/tests/lac/block_linear_operator_05.cc there are many small examples and snippets that show how to use this. In particular, I think the problem is in the fact that you are calling directly

Re: [deal.II] Internal deal.II error when instantiating TrilinosWrappers::block_operator

2023-04-27 Thread Wolfgang Bangerth
Lucas: I'm trying to use the block_operator technique on Trilinos vectors and matrices, but I can't quite get it to compile. For simplicity, the relevant lines of code are: ``` #include #include using vec = dealii::LinearAlgebraTrilinos::MPI::Vector; using block_vec =

[deal.II] Internal deal.II error when instantiating TrilinosWrappers::block_operator

2023-04-27 Thread Lucas Myers
Hi folks, I'm trying to use the block_operator technique on Trilinos vectors and matrices, but I can't quite get it to compile. For simplicity, the relevant lines of code are: ``` #include #include using vec = dealii::LinearAlgebraTrilinos::MPI::Vector; using block_vec =