From d05863372e3cb2ff2c876eb846599c7f8eb85327 Mon Sep 17 00:00:00 2001 From: Harald Martini <harald.martini@student.tugraz.at> Date: Wed, 1 Jun 2022 15:22:23 +0200 Subject: [PATCH] removed MockupRun from VectoCore --- .../Simulation/Impl/Mockup/MockupRun.cs | 50 ------------------- 1 file changed, 50 deletions(-) delete mode 100644 VectoCore/VectoCore/Models/Simulation/Impl/Mockup/MockupRun.cs diff --git a/VectoCore/VectoCore/Models/Simulation/Impl/Mockup/MockupRun.cs b/VectoCore/VectoCore/Models/Simulation/Impl/Mockup/MockupRun.cs deleted file mode 100644 index 2fd82a4c1f..0000000000 --- a/VectoCore/VectoCore/Models/Simulation/Impl/Mockup/MockupRun.cs +++ /dev/null @@ -1,50 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using TUGraz.VectoCommon.Models; -using TUGraz.VectoCore.Models.Connector.Ports.Impl; -using TUGraz.VectoCore.OutputData; - -namespace TUGraz.VectoCore.Models.Simulation.Impl.Mockup -{ - public class MockupRun : VectoRun - { - private IVehicleContainer _vehicleContainer; - public MockupRun(IVehicleContainer container) : base(container) - { - _vehicleContainer = container; - - - } - - - #region Overrides of VectoRun - public override double Progress => 1; - - protected override IResponse DoSimulationStep() - { - FinishedWithoutErrors = true; - - return new ResponseCycleFinished(this); - } - - public override bool CalculateAggregateValues() - { - return false; - } - - protected override bool CheckCyclePortProgress() - { - return false; - } - - protected override IResponse Initialize() - { - return new ResponseSuccess(this); - } - - #endregion - } -} -- GitLab