Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit c2536c6c authored by Harald Martini's avatar Harald Martini
Browse files

pass null as reports to sim factory

parent eddea145
No related branches found
No related tags found
No related merge requests found
......@@ -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)
{
......
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