Skip to content
Snippets Groups Projects

[test][spline] Set gnuplot.setOpenPlotWindow(false) to avoid gnuplot timeout

Merged Kilian Weishaupt requested to merge fix/spline-test-gnuplot into master
2 files
+ 2
0
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -85,6 +85,7 @@ int main(int argc, char** argv)
const auto resultDerivPlot = eval([&](const double x) { return spline.evalDerivative(x); }, plotPoints);
Dumux::GnuplotInterface<double> gnuplot(false);
gnuplot.setOpenPlotWindow(false);
gnuplot.addDataSetToPlot(plotPoints, refPlot, "reference");
gnuplot.addDataSetToPlot(plotPoints, refDerivPlot, "reference_derivative");
gnuplot.addDataSetToPlot(plotPoints, resultPlot, "spline");
Loading