> If this is correct, do you see a way to circumvent the TRILINOS problem I am > facing?
If you need entries i,j in the sparsity pattern and none of the make_*_sparsity_pattern() function apply, you will need to add them manually. This should be as simple as following the same logic you are using in the assembly, where you identify DoF indices (you called them local_interface_dof_indices) and you add them using dsp.add(i,j) where i and j are all indices in local_interface_dof_indices. -- Timo Heister http://www.math.clemson.edu/~heister/ -- 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]. To view this discussion on the web visit https://groups.google.com/d/msgid/dealii/CAMRj59HonM1P7Vm0oDc8PqJ-t7tkoYafcBVdBL-iuMGSr7-quQ%40mail.gmail.com.
