Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 4f5612bc authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

make input parameter to run simulation in multistep-bus simulation optional....

make input parameter to run simulation in multistep-bus simulation optional. default: run simulation
parent 71364997
Branches
Tags
No related merge requests found
...@@ -1027,7 +1027,7 @@ namespace TUGraz.VectoCore.InputData.FileIO.JSON ...@@ -1027,7 +1027,7 @@ namespace TUGraz.VectoCore.InputData.FileIO.JSON
PrimaryInputDataFile = Path.Combine(BasePath, Body.GetEx<string>("PrimaryVehicleResults")); PrimaryInputDataFile = Path.Combine(BasePath, Body.GetEx<string>("PrimaryVehicleResults"));
CompletedInputDataFile = Path.Combine(BasePath, Body.GetEx<string>("CompletedVehicle")); CompletedInputDataFile = Path.Combine(BasePath, Body.GetEx<string>("CompletedVehicle"));
RunSimulation = Body.GetEx<bool>(JsonKeys.BUS_RunSimulation); RunSimulation = Body.ContainsKey(JsonKeys.BUS_RunSimulation) ? Body.GetEx<bool>(JsonKeys.BUS_RunSimulation) : true;
//PrimaryVehicle = CreateReader(primaryInputData); //PrimaryVehicle = CreateReader(primaryInputData);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment