Have more CamelCase methods
The Dune style guidelines require camel-case method names. However, some dune-pdelab methods use lower_case_with_underscores. This inconsistency is difficult to justify, and therefore this patch renames several such methods in constraints.hh and adaptivity.hh to camel-case naming. To preserve backward- compatibility, methods with the old names are reintroduced, and simply forward the renamed-implementations. These old-name methods are not deprecated, to make this patch as uncontroversial as possible.
Merge request reports
Activity
The idea was that as long as the interface remains stable the new methods do not hurt. And keeping both methods across an incompatible interface change is not necessary, because people will have to touch their codes anyway, and can be forced to migrate to the new naming in the process.