Skip to content

Allow ProblemStat to be constructed from pre-basis factory

Praetorius, Simon requested to merge feature/problemstat_construction into master

Summary

Instead of first creating a global basis and then passing this together with a grid to a ProblemStat, the latter can be constructed directly from the underlying pre-basis factory. This allows to write code like

Grid grid = ...;
ProblemStat prob{"name", grid, lagrange<1>()};
Edited by Praetorius, Simon

Merge request reports