Skip to content
Snippets Groups Projects
Commit 75be3278 authored by Bernd Flemisch's avatar Bernd Flemisch
Browse files

[test][spline] add explanation for flag argument

parent 94d352a4
No related branches found
No related tags found
1 merge request!1620Feature/monotone cubic spline
......@@ -94,7 +94,7 @@ int main(int argc, char** argv)
const auto resultPlot = eval([&](const double x) { return spline.eval(x); }, plotPoints);
const auto resultDerivPlot = eval([&](const double x) { return spline.evalDerivative(x); }, plotPoints);
Dumux::GnuplotInterface<double> gnuplot(false);
Dumux::GnuplotInterface<double> gnuplot(/*persist=*/false);
gnuplot.addDataSetToPlot(plotPoints, refPlot, "exp_reference");
gnuplot.addDataSetToPlot(plotPoints, refDerivPlot, "exp_reference_derivative");
gnuplot.addDataSetToPlot(plotPoints, resultPlot, "monotspline");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment