You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/certification.jl
+18-9Lines changed: 18 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -41,9 +41,13 @@ abstract type AbstractSolutionCertificate end
41
41
"""
42
42
SolutionCertificate
43
43
44
-
Result of [`certify`](@ref) for a single solution. Contains the initial solutions
45
-
and if the certification was successfull a vector of complex intervals where the true
46
-
solution is contained in.
44
+
Result of [`certify`](@ref) for a single solution. Contains the initial solutions and if the certification was successfull a vector of complex intervals where the true solution is contained in.
45
+
The complex intervals are given as an `Arblib.AcbMatrix`.
46
+
The `Arblib.AcbMatrix` is printed in the default format of `Arblib`. This means that, if the midpoint of an interval can't be represented with sufficiently many correct digits, `Arblib` will not print the midpoint. Instead, it will print an interval of the form `[+/- r]`, where `r` will be an upper bound for the absolute value of the ball. An enclosure of the correct interval can be printed as follows.
47
+
```julia
48
+
Base.show(certificate::SolutionCertificate; digits = 16, more = true)
49
+
```
50
+
This uses the [`ARB_STR_MORE`](https://flintlib.org/doc/arb.html#c.arb_get_str) functionality in `Flint` with `16` digits.
Returns an `Arblib.AcbMatrix` representing a vector of complex intervals where a unique
158
161
zero of the system is contained in.
159
-
This is the result of applying the Krawczyk operator to `certified_solution_interval(certificate)`.
160
-
Returns `nothing` if `is_certified(certificate)` is `false`.
162
+
This is the result of applying the Krawczyk operator to `certified_solution_interval(certificate)`. Returns `nothing` if `is_certified(certificate)` is `false`.
0 commit comments