From ec3354955ca0665090cbc79d76718f8c03c34efc Mon Sep 17 00:00:00 2001 From: Valerio Bozza Date: Sun, 19 Jan 2025 12:17:49 +0100 Subject: [PATCH] Update AdvancedControl.md --- docs/C++/AdvancedControl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/C++/AdvancedControl.md b/docs/C++/AdvancedControl.md index bd008ea..311cd4a 100644 --- a/docs/C++/AdvancedControl.md +++ b/docs/C++/AdvancedControl.md @@ -59,7 +59,7 @@ This variant of `BinaryMag` can be useful to check how the algorithm proceeds up ### Estimated error -Another important diagnostics only available with `BinaryMag` is the error estimate `VBM.therr`. As said before, the sampling on the source boundary is increased until the estimated error falls below the accuracy or precision thresholds fixed by `VBM.Tol` and `VBM.RelTol` (see [Accuracy Control](AccuracyControl.md)). However, when the input parameters are pushed to extreme values, numerical errors will eventually dominate and preclude any possibilities to meet the desired accuracy. `BinaryMag` will always try to return a reasonable estimate of the magnification by discarding problematic points on the source boundary. This comes to the cost of leaving irreducible errors in the final result. Therefore, `VBM.therr` can track such occurrences and report an error estimate that can be useful in these particular situations. +Another important diagnostics is the error estimate `VBM.therr`. As said before, the sampling on the source boundary is increased until the estimated error falls below the accuracy or precision thresholds fixed by `VBM.Tol` and `VBM.RelTol` (see [Accuracy Control](AccuracyControl.md)). However, when the input parameters are pushed to extreme values, numerical errors will eventually dominate and preclude any possibilities to meet the desired accuracy. `BinaryMag` will always try to return a reasonable estimate of the magnification by discarding problematic points on the source boundary. This comes to the cost of leaving irreducible errors in the final result. Therefore, `VBM.therr` can track such occurrences and report an error estimate that can be useful in these particular situations. ## Parameters ranges