From c2536c6ca00c5b9615e0dcee53f90c2a1d32f50e Mon Sep 17 00:00:00 2001 From: Harald Martini <harald.martini@student.tugraz.at> Date: Mon, 4 Jul 2022 13:29:51 +0200 Subject: [PATCH] pass null as reports to sim factory --- VECTO3GUI2020/ViewModel/Implementation/JobListViewModel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VECTO3GUI2020/ViewModel/Implementation/JobListViewModel.cs b/VECTO3GUI2020/ViewModel/Implementation/JobListViewModel.cs index 480523a635..d2ab267daf 100644 --- a/VECTO3GUI2020/ViewModel/Implementation/JobListViewModel.cs +++ b/VECTO3GUI2020/ViewModel/Implementation/JobListViewModel.cs @@ -518,7 +518,7 @@ namespace VECTO3GUI2020.ViewModel.Implementation } var fileWriter = new FileOutputWriter(GetOutputDirectory(fullFileName)); - var runsFactory = _simFactoryFactory.Factory(mode, input, fileWriter); + var runsFactory = _simFactoryFactory.Factory(mode, input, fileWriter, null, null); //var runsFactory = SimulatorFactory.CreateSimulatorFactory(mode, input, fileWriter); runsFactory.WriteModalResults = Settings.Default.WriteModalResults; runsFactory.ModalResults1Hz = Settings.Default.ModalResults1Hz; @@ -593,7 +593,7 @@ namespace VECTO3GUI2020.ViewModel.Implementation }); var start = Stopwatch.StartNew(); - jobContainer.Execute(true); + jobContainer.Execute(false); //TODO HM set back to true while (!jobContainer.AllCompleted) { -- GitLab