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

Skip to content
Snippets Groups Projects
Commit e9ecd7cd authored by Markus QUARITSCH's avatar Markus QUARITSCH
Browse files

bugfix consolidated input data complete: ADAS, APT EcoRoll Lockup Clutch is optional

parent 9a9c8c85
No related branches found
No related tags found
No related merge requests found
......@@ -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()
......
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