Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/Kernels/UpliftVan/UpliftVanKernelWrapper.cs =================================================================== diff -u -r7512f4503ba4ba4c2419f7f74357f259bc4b9f41 -r73bd43678d003eca592c2ce14a2500a983d9b4c9 --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/Kernels/UpliftVan/UpliftVanKernelWrapper.cs (.../UpliftVanKernelWrapper.cs) (revision 7512f4503ba4ba4c2419f7f74357f259bc4b9f41) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/Kernels/UpliftVan/UpliftVanKernelWrapper.cs (.../UpliftVanKernelWrapper.cs) (revision 73bd43678d003eca592c2ce14a2500a983d9b4c9) @@ -45,7 +45,6 @@ { stabilityModel = new StabilityModel { - SlipPlaneConstraints = new SlipPlaneConstraints(), GridOrientation = GridOrientation.Inwards, SlipCircle = new SlipCircle(), SearchAlgorithm = SearchAlgorithm.Grid, @@ -113,6 +112,14 @@ } } + public SlipPlaneConstraints SlipPlaneConstraints + { + set + { + stabilityModel.SlipPlaneConstraints = value; + } + } + public bool MoveGrid { set @@ -145,38 +152,6 @@ } } - public bool CreateZones - { - set - { - stabilityModel.SlipPlaneConstraints.CreateZones = value; - } - } - - public bool AutomaticForbiddenZones - { - set - { - stabilityModel.SlipPlaneConstraints.AutomaticForbiddenZones = value; - } - } - - public double SlipPlaneMinimumDepth - { - set - { - stabilityModel.SlipPlaneConstraints.SlipPlaneMinDepth = value; - } - } - - public double SlipPlaneMinimumLength - { - set - { - stabilityModel.SlipPlaneConstraints.SlipPlaneMinLength = value; - } - } - public double FactorOfStability { get; private set; } public double ZValue { get; private set; }