From f5f1e19b185048fc6e41d8a2b5529623262e70f7 Mon Sep 17 00:00:00 2001 From: Michael Krisper <michael.krisper@tugraz.at> Date: Tue, 11 Aug 2015 13:38:09 +0200 Subject: [PATCH] compileable again --- VectoCore/Models/SimulationComponent/Impl/Driver.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/VectoCore/Models/SimulationComponent/Impl/Driver.cs b/VectoCore/Models/SimulationComponent/Impl/Driver.cs index d299e7ea3e..d75603342c 100644 --- a/VectoCore/Models/SimulationComponent/Impl/Driver.cs +++ b/VectoCore/Models/SimulationComponent/Impl/Driver.cs @@ -1,5 +1,4 @@ using System; -using System.CodeDom; using System.Collections.Generic; using System.Linq; using TUGraz.VectoCore.Configuration; @@ -8,7 +7,6 @@ using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.Connector.Ports.Impl; using TUGraz.VectoCore.Models.Simulation.Data; using TUGraz.VectoCore.Models.Simulation.Impl; -using TUGraz.VectoCore.Models.SimulationComponent; using TUGraz.VectoCore.Models.SimulationComponent.Data; using TUGraz.VectoCore.Utils; @@ -95,7 +93,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl { var exceeded = new List<double>(); var acceleration = new List<double>(); - var searchInterval = CurrentState.Acceleration.Value() / 2.0; + var searchInterval = CurrentState.Acceleration / 2.0; do { var delta = 0.0; -- GitLab