Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/MacroStabilityInwardsCalculator.cs =================================================================== diff -u -rdea4b8c2f53fe77b14bdcf4bce131f47ece21664 -r14ce61e9643e427122685384157ec22ddb9b4422 --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/MacroStabilityInwardsCalculator.cs (.../MacroStabilityInwardsCalculator.cs) (revision dea4b8c2f53fe77b14bdcf4bce131f47ece21664) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/MacroStabilityInwardsCalculator.cs (.../MacroStabilityInwardsCalculator.cs) (revision 14ce61e9643e427122685384157ec22ddb9b4422) @@ -36,7 +36,7 @@ public class MacroStabilityInwardsCalculator : IMacroStabilityInwardsCalculator { private readonly MacroStabilityInwardsCalculatorInput input; - private readonly IMacroStabilityInwardsSubCalculatorFactory factory; + private readonly IMacroStabilityInwardsKernelFactory factory; /// /// Constructs a new . The is used to @@ -46,7 +46,7 @@ /// for performing a macro stability inwards calculation. /// The factory responsible for creating the sub calculators. /// Thrown when or is null. - public MacroStabilityInwardsCalculator(MacroStabilityInwardsCalculatorInput input, IMacroStabilityInwardsSubCalculatorFactory factory) + public MacroStabilityInwardsCalculator(MacroStabilityInwardsCalculatorInput input, IMacroStabilityInwardsKernelFactory factory) { if (input == null) { @@ -101,7 +101,7 @@ private IUpliftVanKernel CreateUpliftVanCalculator() { - IUpliftVanKernel calculator = factory.CreateUpliftVanCalculator(); + IUpliftVanKernel calculator = factory.CreateUpliftVanKernel(); calculator.MoveGrid = input.MoveGrid; calculator.MaximumSliceWidth = input.MaximumSliceWidth;