Re: [deal.II] Doubt regarding constraints

2016-09-06 Thread Wolfgang Bangerth
Suppose I want to constraint dof1 owned by processor 1 to be equal to dof2 owned by processor 2. I can do that by calling | ConstraintMatrixconstraints; constraints.reinit(locally_relevant_dofs); constraints.add_line(dof1); constraints.add_entry(dof2); | Q1. Should it only be called on one

[deal.II] Doubt regarding constraints

2016-09-05 Thread RAJAT ARORA
Hello all, I have a question regarding use of constraints when using parallel programming. Suppose I want to constraint dof1 owned by processor 1 to be equal to dof2 owned by processor 2. I can do that by calling ConstraintMatrix constraints; constraints.reinit(locally_relevant_dofs); cons