Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/Kernels/UpliftVan/UpliftVanKernelWrapper.cs =================================================================== diff -u -r7512f4503ba4ba4c2419f7f74357f259bc4b9f41 -r8d246ac6328e6e649ff6e78dfe3fac210d789ba0 --- 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 8d246ac6328e6e649ff6e78dfe3fac210d789ba0) @@ -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; }