Update CompactHelper.yml #349
Annotations
10 errors and 10 warnings
docs/src/rounding.md#L30
doctest failure in src/rounding.md:30-38
```jldoctest rounding
julia> using IntervalArithmetic
julia> II = Interval(0.1)
[0.1, 0.100001]
julia> showfull(II)
Interval(0.1, 0.1)
```
Subexpression:
II = Interval(0.1)
Evaluated output:
ERROR: MethodError: no method matching Interval(::Float64)
Closest candidates are:
(::Type{T})(::T) where T<:Number
@ Core boot.jl:792
(::Type{T})(!Matched::AbstractChar) where T<:Union{AbstractChar, Number}
@ Base char.jl:50
(::Type{T})(!Matched::Base.TwicePrecision) where T<:Number
@ Base twiceprecision.jl:266
...
Stacktrace:
[1] top-level scope
@ none:1
Expected output:
[0.1, 0.100001]
diff =
Warning: Diff output requires color.
[0.1, 0.100001]ERROR: MethodError: no method matching Interval(::Float64)
Closest candidates are:
(::Type{T})(::T) where T<:Number
@ Core boot.jl:792
(::Type{T})(!Matched::AbstractChar) where T<:Union{AbstractChar, Number}
@ Base char.jl:50
(::Type{T})(!Matched::Base.TwicePrecision) where T<:Number
@ Base twiceprecision.jl:266
...
Stacktrace:
[1] top-level scope
@ none:1
|
docs/src/rounding.md#L30
doctest failure in src/rounding.md:30-38
```jldoctest rounding
julia> using IntervalArithmetic
julia> II = Interval(0.1)
[0.1, 0.100001]
julia> showfull(II)
Interval(0.1, 0.1)
```
Subexpression:
showfull(II)
Evaluated output:
ERROR: UndefVarError: `showfull` not defined
Stacktrace:
[1] top-level scope
@ none:1
Expected output:
Interval(0.1, 0.1)
diff =
Warning: Diff output requires color.
Interval(0.1, 0.1)ERROR: UndefVarError: `showfull` not defined
Stacktrace:
[1] top-level scope
@ none:1
|
docs/src/rounding.md#L44
doctest failure in src/rounding.md:44-47
```jldoctest rounding
julia> a = @interval(0.1)
[0.0999999, 0.100001]
```
Subexpression:
a = @interval(0.1)
Evaluated output:
ERROR: LoadError: UndefVarError: `@interval` not defined
in expression starting at none:1
Expected output:
[0.0999999, 0.100001]
diff =
Warning: Diff output requires color.
[0.0999999, 0.100001]ERROR: LoadError: UndefVarError: `@interval` not defined
in expression starting at none:1
|
docs/src/rounding.md#L58
doctest failure in src/rounding.md:58-64
```jldoctest rounding
julia> f(a)
[0.399999, 0.400001]
julia> showfull(f(a))
Interval(0.39999999999999997, 0.4)
```
Subexpression:
f(a)
Evaluated output:
ERROR: UndefVarError: `a` not defined
Stacktrace:
[1] top-level scope
@ none:1
Expected output:
[0.399999, 0.400001]
diff =
Warning: Diff output requires color.
[0.399999, 0.400001]ERROR: UndefVarError: `a` not defined
Stacktrace:
[1] top-level scope
@ none:1
|
docs/src/rounding.md#L58
doctest failure in src/rounding.md:58-64
```jldoctest rounding
julia> f(a)
[0.399999, 0.400001]
julia> showfull(f(a))
Interval(0.39999999999999997, 0.4)
```
Subexpression:
showfull(f(a))
Evaluated output:
ERROR: UndefVarError: `a` not defined
Stacktrace:
[1] top-level scope
@ none:1
Expected output:
Interval(0.39999999999999997, 0.4)
diff =
Warning: Diff output requires color.
Interval(0.39999999999999997, 0.4)ERROR: UndefVarError: `a` not defined
Stacktrace:
[1] top-level scope
@ none:1
|
docs/src/usage.md#L11
doctest failure in src/usage.md:11-22
```jldoctest usage
julia> using IntervalArithmetic
julia> a = @interval(1)
[1, 1]
julia> typeof(ans)
Interval{Float64}
julia> b = @interval(1, 2)
[1, 2]
```
Subexpression:
a = @interval(1)
Evaluated output:
ERROR: LoadError: UndefVarError: `@interval` not defined
in expression starting at none:1
Expected output:
[1, 1]
diff =
Warning: Diff output requires color.
[1, 1]ERROR: LoadError: UndefVarError: `@interval` not defined
in expression starting at none:1
|
docs/src/usage.md#L11
doctest failure in src/usage.md:11-22
```jldoctest usage
julia> using IntervalArithmetic
julia> a = @interval(1)
[1, 1]
julia> typeof(ans)
Interval{Float64}
julia> b = @interval(1, 2)
[1, 2]
```
Subexpression:
typeof(ans)
Evaluated output:
LoadError
Expected output:
Interval{Float64}
diff =
Warning: Diff output requires color.
Interval{Float64}LoadError
|
docs/src/usage.md#L11
doctest failure in src/usage.md:11-22
```jldoctest usage
julia> using IntervalArithmetic
julia> a = @interval(1)
[1, 1]
julia> typeof(ans)
Interval{Float64}
julia> b = @interval(1, 2)
[1, 2]
```
Subexpression:
b = @interval(1, 2)
Evaluated output:
ERROR: LoadError: UndefVarError: `@interval` not defined
in expression starting at none:1
Expected output:
[1, 2]
diff =
Warning: Diff output requires color.
[1, 2]ERROR: LoadError: UndefVarError: `@interval` not defined
in expression starting at none:1
|
docs/src/usage.md#L27
doctest failure in src/usage.md:27-33
```jldoctest usage
julia> @biginterval(1, 2)
[1, 2]₂₅₆
julia> showfull(ans)
Interval(1.0, 2.0)
```
Subexpression:
@biginterval(1, 2)
Evaluated output:
ERROR: LoadError: UndefVarError: `@biginterval` not defined
in expression starting at none:1
Expected output:
[1, 2]₂₅₆
diff =
Warning: Diff output requires color.
[1, 2]₂₅₆ERROR: LoadError: UndefVarError: `@biginterval` not defined
in expression starting at none:1
|
docs/src/usage.md#L27
doctest failure in src/usage.md:27-33
```jldoctest usage
julia> @biginterval(1, 2)
[1, 2]₂₅₆
julia> showfull(ans)
Interval(1.0, 2.0)
```
Subexpression:
showfull(ans)
Evaluated output:
ERROR: UndefVarError: `showfull` not defined
Stacktrace:
[1] top-level scope
@ none:1
Expected output:
Interval(1.0, 2.0)
diff =
Warning: Diff output requires color.
Interval(1.0, 2.0)ERROR: UndefVarError: `showfull` not defined
Stacktrace:
[1] top-level scope
@ none:1
|
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
no doc found for reference '[`..`](@ref)' in src/api.md.
|
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
no doc found for reference '[`..`](@ref)' in src/api.md.
|
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
no doc found for reference '[`..`](@ref)' in src/api.md.
|
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
no doc found for reference '[`..`](@ref)' in src/api.md.
|
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
no doc found for reference '[`@interval`](@ref)' in src/usage.md.
|
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
no doc found for reference '[`@interval`](@ref)' in src/usage.md.
|
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
no doc found for reference '[`@interval`](@ref)' in src/usage.md.
|
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
no doc found for reference '[`@interval`](@ref)' in src/usage.md.
|
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
no doc found for reference '[`@interval`](@ref)' in src/usage.md.
|
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
7 docstrings not included in the manual:
IntervalArithmetic.Symbols.∞
IntervalArithmetic.Overlap
IntervalArithmetic.Symbols.:⪽
IntervalArithmetic.Symbols.∅
IntervalArithmetic.Symbols.:..
IntervalArithmetic.Symbols.:≺
IntervalArithmetic.Symbols.ℝ
These are docstrings in the checked modules (configured with the modules keyword)
that are not included in @docs or @autodocs blocks.
|
The logs for this run have expired and are no longer available.
Loading