From 01754e746a0b206b0984e89d18d215d7f2b2e1ce Mon Sep 17 00:00:00 2001 From: Korcsmaros Berta Date: Tue, 31 Oct 2017 12:36:48 +0100 Subject: [PATCH] fixed2 BM1D.cc --- BM1D.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BM1D.cc b/BM1D.cc index 6711386..cb36052 100644 --- a/BM1D.cc +++ b/BM1D.cc @@ -55,8 +55,8 @@ int main(int argc, char* argv[]) break; } - Plotter* myPlotter = new Plotter(); - myPlotter->Plot(nRuns, nSteps, myBM1DProcess->GetT(), myBM1DProcess->GetX(), true); + Plotter* myPlotter = new Plotter(true); + myPlotter->Plot(nRuns, nSteps, myBM1DProcess->GetT(), myBM1DProcess->GetX()); App.Run(); return 0;