Deal all,
I'm using the mixed finite element to solve a Cahn-HIlliard type equation, after discretization I obtain a block matrix system. I plan to use the class SchurMatrix in deal.ii to obtain the Schur Complement.
The block matrix system is
* / \ / \ / \
* | A Dt | | u | - | f |
* | -B C | | p | - | g |
* \ / \ / \ /
where A and C are sparse mass matrices, B Dt are sparse stiff matrices.
But when constructing the SchurMatrix object, I need to provide 'mem'. Could someone help me to provide 'mem'?
Thank you in advance.
Jesse
template<class MA_inverse , class MB , class MDt , class MC >