diff --git a/VectoCore/VectoCore/InputData/FileIO/XML/Declaration/Reader/Impl/XMLDeclarationMultistageInputReader.cs b/VectoCore/VectoCore/InputData/FileIO/XML/Declaration/Reader/Impl/XMLDeclarationMultistageInputReader.cs index cbb854afe98302f7dfade7a0a961008405ac6cc4..7b5f2623a832e5b08d785f6a6f44857ec5b3af10 100644 --- a/VectoCore/VectoCore/InputData/FileIO/XML/Declaration/Reader/Impl/XMLDeclarationMultistageInputReader.cs +++ b/VectoCore/VectoCore/InputData/FileIO/XML/Declaration/Reader/Impl/XMLDeclarationMultistageInputReader.cs @@ -812,7 +812,16 @@ namespace TUGraz.VectoCore.InputData.FileIO.XML.Declaration.Reader.Impl protected override bool IsInputDataCompleteTemplate(VectoSimulationJobType jobType, bool fullCheck) { - return InputComplete(ATEcoRollReleaseLockupClutch, nameof(ATEcoRollReleaseLockupClutch)); + return true; + //if (fullCheck) { + // //use Binary AND to execute all Statements and gather information about missing parameters. + // return InputComplete(EngineStopStart, nameof(EngineStopStart)) + // & InputComplete(EcoRoll, nameof(EcoRoll)) + // & InputComplete(PredictiveCruiseControl, nameof(PredictiveCruiseControl)); + //} + //return InputComplete(EngineStopStart, nameof(EngineStopStart)) + // && InputComplete(EcoRoll, nameof(EcoRoll)) + // && InputComplete(PredictiveCruiseControl, nameof(PredictiveCruiseControl)); } public override string GetInvalidEntry()