// Adol-C taped
if (method ==
SymmetricTensorEigenvectorMethod::ql_implicit_shifts)
- sf = (dim == 2 ? 2e11 : 2e11);
+ sf = 2e11;
else if (method == SymmetricTensorEigenvectorMethod::jacobi)
sf = (dim == 2 ? 1e6 : 1e9);
else
*
* @ingroup Exceptions
*/
- DeclException1(ExcHangingNodesNotAllowed,
- int,
- << "You are using continuous elements on a grid with "
- << "hanging nodes but without providing hanging node "
- << "constraints. Use the respective function with "
- << "additional AffineConstraints argument(s), instead."
- << (arg1 ? "" : ""));
+ DeclExceptionMsg(ExcHangingNodesNotAllowed,
+ "You are using continuous elements on a grid with "
+ "hanging nodes but without providing hanging node "
+ "constraints. Use the respective function with "
+ "additional AffineConstraints argument(s), instead.");
/**
* You need at least two grid levels.
*
++face)
Assert(cell1->at_boundary(face) ||
cell1->neighbor(face)->level() == cell1->level(),
- ExcHangingNodesNotAllowed(0));
+ ExcHangingNodesNotAllowed());
const unsigned int dofs_per_cell1 = cell1->get_fe().dofs_per_cell;
++face)
Assert(cell->at_boundary(face) ||
cell->neighbor(face)->level() == cell->level(),
- ExcHangingNodesNotAllowed(0));
+ ExcHangingNodesNotAllowed());
const unsigned int dofs_per_cell1 = cell->get_fe().dofs_per_cell;
++face)
Assert(cell->at_boundary(face) ||
cell->neighbor(face)->level() == cell->level(),
- ExcHangingNodesNotAllowed(0));
+ ExcHangingNodesNotAllowed());
cell->get_dof_values(u1, u1_local);
difference_matrix.vmult(u1_diff_local, u1_local);