Skip to content

Fix inv does not work for niggli_reduce & delaunay_reduce in Ju… #290

Fix inv does not work for niggli_reduce & delaunay_reduce in Ju…

Fix inv does not work for niggli_reduce & delaunay_reduce in Ju… #290

Triggered via push August 16, 2023 10:00
Status Failure
Total duration 7m 52s
Artifacts

CI.yml

on: push
Matrix: test
Fit to window
Zoom out
Zoom in

Annotations

31 errors and 10 warnings
Julia 1.5 - ubuntu-latest - x86 - push
Process completed with exit code 1.
Julia 1.5 - ubuntu-latest - x64 - push
Process completed with exit code 1.
Julia nightly - ubuntu-latest - x86 - push
Process completed with exit code 1.
Julia 1.4 - ubuntu-latest - x64 - push
Process completed with exit code 1.
Julia 1.9 - ubuntu-latest - x86 - push
Process completed with exit code 1.
Julia 1.3 - ubuntu-latest - x64 - push
Process completed with exit code 1.
Julia 1.7 - ubuntu-latest - x86 - push
Process completed with exit code 1.
Julia 1.8 - ubuntu-latest - x86 - push
Process completed with exit code 1.
Julia 1.6 - ubuntu-latest - x86 - push
Process completed with exit code 1.
Julia 1.5 - macOS-latest - x64 - push
Process completed with exit code 1.
Julia 1.3 - ubuntu-latest - x86 - push
Process completed with exit code 1.
Julia 1.4 - ubuntu-latest - x86 - push
Process completed with exit code 1.
Julia 1.4 - macOS-latest - x64 - push
Process completed with exit code 1.
Julia 1.3 - macOS-latest - x64 - push
Process completed with exit code 1.
Julia 1.4 - windows-latest - x64 - push
Process completed with exit code 1.
Julia 1.5 - windows-latest - x64 - push
Process completed with exit code 1.
Documentation: ../../../.julia/packages/CrystallographyCore/ODYu5/src/lattice.jl#L21
doctest failure in ~/.julia/packages/CrystallographyCore/ODYu5/src/lattice.jl:21-31 ```jldoctest julia> Lattice([ 1.2 4.5 7.8 2.3 5.6 8.9 3.4 6.7 9.1 ]) 3×3 Lattice{Float64} 1.2 4.5 7.8 2.3 5.6 8.9 3.4 6.7 9.1 ``` Subexpression: Lattice([ Evaluated output: ERROR: syntax: incomplete: premature end of input Stacktrace: [1] top-level scope @ none:1 Expected output: 1.2 4.5 7.8 2.3 5.6 8.9 3.4 6.7 9.1 ]) 3×3 Lattice{Float64} 1.2 4.5 7.8 2.3 5.6 8.9 3.4 6.7 9.1 diff = Warning: Diff output requires color. 1.2 4.5 7.8 2.3 5.6 8.9 3.4 6.7 9.1 ]) 3×3 Lattice{Float64} 1.2 4.5 7.8 2.3 5.6 8.9 3.4 6.7 9.1ERROR: syntax: incomplete: premature end of input Stacktrace: [1] top-level scope @ none:1
Documentation: ../../../.julia/packages/CrystallographyCore/ODYu5/src/lattice.jl#L40
doctest failure in ~/.julia/packages/CrystallographyCore/ODYu5/src/lattice.jl:40-48 ```jldoctest julia> 𝐚, 𝐛, 𝐜 = [1.2, 2.3, 3.4], [4.5, 5.6, 6.7], [7.8, 8.9, 9.10]; julia> Lattice(𝐚, 𝐛, 𝐜) 3×3 Lattice{Float64} 1.2 4.5 7.8 2.3 5.6 8.9 3.4 6.7 9.1 ``` Subexpression: Lattice(𝐚, 𝐛, 𝐜) Evaluated output: ERROR: UndefVarError: `Lattice` not defined Stacktrace: [1] top-level scope @ none:1 Expected output: 3×3 Lattice{Float64} 1.2 4.5 7.8 2.3 5.6 8.9 3.4 6.7 9.1 diff = Warning: Diff output requires color. 3×3 Lattice{Float64} 1.2 4.5 7.8 2.3 5.6 8.9 3.4 6.7 9.1ERROR: UndefVarError: `Lattice` not defined Stacktrace: [1] top-level scope @ none:1
Documentation: ../../../.julia/packages/CrystallographyCore/ODYu5/src/lattice.jl#L57
doctest failure in ~/.julia/packages/CrystallographyCore/ODYu5/src/lattice.jl:57-93 ```jldoctest julia> Lattice([[1.2, 2.3, 3.4], [4.5, 5.6, 6.7], [7.8, 8.9, 9.10]]) 3×3 Lattice{Float64} 1.2 4.5 7.8 2.3 5.6 8.9 3.4 6.7 9.1 julia> Lattice(((1.1, 2.2, 3.1), (4.4, 5.5, 6.5), (7.3, 8.8, 9.9))) 3×3 Lattice{Float64} 1.1 4.4 7.3 2.2 5.5 8.8 3.1 6.5 9.9 julia> Lattice((1.1, 2.2, 3.1, 4.4, 5.5, 6.5, 7.3, 8.8, 9.9)) 3×3 Lattice{Float64} 1.1 4.4 7.3 2.2 5.5 8.8 3.1 6.5 9.9 julia> Lattice(i * 1.1 for i in 1:9) 3×3 Lattice{Float64} 1.1 4.4 7.700000000000001 2.2 5.5 8.8 3.3000000000000003 6.6000000000000005 9.9 julia> using Unitful, UnitfulAtomic julia> Lattice([ [4u"nm", 0u"m", 0.0u"cm"], [0u"cm", 180.0u"bohr", 0u"m"], [0u"bohr", 0u"nm", (3//1) * u"angstrom"], ]) 3×3 Lattice{Quantity{Float64, 𝐋, Unitful.FreeUnits{(m,), 𝐋, nothing}}} 4.0e-9 m 0.0 m 0.0 m 0.0 m 9.525189796254e-9 m 0.0 m 0.0 m 0.0 m 3.0e-10 m ``` Subexpression: Lattice([[1.2, 2.3, 3.4], [4.5, 5.6, 6.7], [7.8, 8.9, 9.10]]) Evaluated output: ERROR: UndefVarError: `Lattice` not defined Stacktrace: [1] top-level scope @ none:1 Expected output: 3×3 Lattice{Float64} 1.2 4.5 7.8 2.3 5.6 8.9 3.4 6.7 9.1 diff = Warning: Diff output requires color. 3×3 Lattice{Float64} 1.2 4.5 7.8 2.3 5.6 8.9 3.4 6.7 9.1ERROR: UndefVarError: `Lattice` not defined Stacktrace: [1] top-level scope @ none:1
Documentation: ../../../.julia/packages/CrystallographyCore/ODYu5/src/lattice.jl#L57
doctest failure in ~/.julia/packages/CrystallographyCore/ODYu5/src/lattice.jl:57-93 ```jldoctest julia> Lattice([[1.2, 2.3, 3.4], [4.5, 5.6, 6.7], [7.8, 8.9, 9.10]]) 3×3 Lattice{Float64} 1.2 4.5 7.8 2.3 5.6 8.9 3.4 6.7 9.1 julia> Lattice(((1.1, 2.2, 3.1), (4.4, 5.5, 6.5), (7.3, 8.8, 9.9))) 3×3 Lattice{Float64} 1.1 4.4 7.3 2.2 5.5 8.8 3.1 6.5 9.9 julia> Lattice((1.1, 2.2, 3.1, 4.4, 5.5, 6.5, 7.3, 8.8, 9.9)) 3×3 Lattice{Float64} 1.1 4.4 7.3 2.2 5.5 8.8 3.1 6.5 9.9 julia> Lattice(i * 1.1 for i in 1:9) 3×3 Lattice{Float64} 1.1 4.4 7.700000000000001 2.2 5.5 8.8 3.3000000000000003 6.6000000000000005 9.9 julia> using Unitful, UnitfulAtomic julia> Lattice([ [4u"nm", 0u"m", 0.0u"cm"], [0u"cm", 180.0u"bohr", 0u"m"], [0u"bohr", 0u"nm", (3//1) * u"angstrom"], ]) 3×3 Lattice{Quantity{Float64, 𝐋, Unitful.FreeUnits{(m,), 𝐋, nothing}}} 4.0e-9 m 0.0 m 0.0 m 0.0 m 9.525189796254e-9 m 0.0 m 0.0 m 0.0 m 3.0e-10 m ``` Subexpression: Lattice(((1.1, 2.2, 3.1), (4.4, 5.5, 6.5), (7.3, 8.8, 9.9))) Evaluated output: ERROR: UndefVarError: `Lattice` not defined Stacktrace: [1] top-level scope @ none:1 Expected output: 3×3 Lattice{Float64} 1.1 4.4 7.3 2.2 5.5 8.8 3.1 6.5 9.9 diff = Warning: Diff output requires color. 3×3 Lattice{Float64} 1.1 4.4 7.3 2.2 5.5 8.8 3.1 6.5 9.9ERROR: UndefVarError: `Lattice` not defined Stacktrace: [1] top-level scope @ none:1
Documentation: ../../../.julia/packages/CrystallographyCore/ODYu5/src/lattice.jl#L57
doctest failure in ~/.julia/packages/CrystallographyCore/ODYu5/src/lattice.jl:57-93 ```jldoctest julia> Lattice([[1.2, 2.3, 3.4], [4.5, 5.6, 6.7], [7.8, 8.9, 9.10]]) 3×3 Lattice{Float64} 1.2 4.5 7.8 2.3 5.6 8.9 3.4 6.7 9.1 julia> Lattice(((1.1, 2.2, 3.1), (4.4, 5.5, 6.5), (7.3, 8.8, 9.9))) 3×3 Lattice{Float64} 1.1 4.4 7.3 2.2 5.5 8.8 3.1 6.5 9.9 julia> Lattice((1.1, 2.2, 3.1, 4.4, 5.5, 6.5, 7.3, 8.8, 9.9)) 3×3 Lattice{Float64} 1.1 4.4 7.3 2.2 5.5 8.8 3.1 6.5 9.9 julia> Lattice(i * 1.1 for i in 1:9) 3×3 Lattice{Float64} 1.1 4.4 7.700000000000001 2.2 5.5 8.8 3.3000000000000003 6.6000000000000005 9.9 julia> using Unitful, UnitfulAtomic julia> Lattice([ [4u"nm", 0u"m", 0.0u"cm"], [0u"cm", 180.0u"bohr", 0u"m"], [0u"bohr", 0u"nm", (3//1) * u"angstrom"], ]) 3×3 Lattice{Quantity{Float64, 𝐋, Unitful.FreeUnits{(m,), 𝐋, nothing}}} 4.0e-9 m 0.0 m 0.0 m 0.0 m 9.525189796254e-9 m 0.0 m 0.0 m 0.0 m 3.0e-10 m ``` Subexpression: Lattice((1.1, 2.2, 3.1, 4.4, 5.5, 6.5, 7.3, 8.8, 9.9)) Evaluated output: ERROR: UndefVarError: `Lattice` not defined Stacktrace: [1] top-level scope @ none:1 Expected output: 3×3 Lattice{Float64} 1.1 4.4 7.3 2.2 5.5 8.8 3.1 6.5 9.9 diff = Warning: Diff output requires color. 3×3 Lattice{Float64} 1.1 4.4 7.3 2.2 5.5 8.8 3.1 6.5 9.9ERROR: UndefVarError: `Lattice` not defined Stacktrace: [1] top-level scope @ none:1
Documentation: ../../../.julia/packages/CrystallographyCore/ODYu5/src/lattice.jl#L57
doctest failure in ~/.julia/packages/CrystallographyCore/ODYu5/src/lattice.jl:57-93 ```jldoctest julia> Lattice([[1.2, 2.3, 3.4], [4.5, 5.6, 6.7], [7.8, 8.9, 9.10]]) 3×3 Lattice{Float64} 1.2 4.5 7.8 2.3 5.6 8.9 3.4 6.7 9.1 julia> Lattice(((1.1, 2.2, 3.1), (4.4, 5.5, 6.5), (7.3, 8.8, 9.9))) 3×3 Lattice{Float64} 1.1 4.4 7.3 2.2 5.5 8.8 3.1 6.5 9.9 julia> Lattice((1.1, 2.2, 3.1, 4.4, 5.5, 6.5, 7.3, 8.8, 9.9)) 3×3 Lattice{Float64} 1.1 4.4 7.3 2.2 5.5 8.8 3.1 6.5 9.9 julia> Lattice(i * 1.1 for i in 1:9) 3×3 Lattice{Float64} 1.1 4.4 7.700000000000001 2.2 5.5 8.8 3.3000000000000003 6.6000000000000005 9.9 julia> using Unitful, UnitfulAtomic julia> Lattice([ [4u"nm", 0u"m", 0.0u"cm"], [0u"cm", 180.0u"bohr", 0u"m"], [0u"bohr", 0u"nm", (3//1) * u"angstrom"], ]) 3×3 Lattice{Quantity{Float64, 𝐋, Unitful.FreeUnits{(m,), 𝐋, nothing}}} 4.0e-9 m 0.0 m 0.0 m 0.0 m 9.525189796254e-9 m 0.0 m 0.0 m 0.0 m 3.0e-10 m ``` Subexpression: Lattice(i * 1.1 for i in 1:9) Evaluated output: ERROR: UndefVarError: `Lattice` not defined Stacktrace: [1] top-level scope @ none:1 Expected output: 3×3 Lattice{Float64} 1.1 4.4 7.700000000000001 2.2 5.5 8.8 3.3000000000000003 6.6000000000000005 9.9 diff = Warning: Diff output requires color. 3×3 Lattice{Float64} 1.1 4.4 7.700000000000001 2.2 5.5 8.8 3.3000000000000003 6.6000000000000005 9.9ERROR: UndefVarError: `Lattice` not defined Stacktrace: [1] top-level scope @ none:1
Documentation: ../../../.julia/packages/CrystallographyCore/ODYu5/src/lattice.jl#L57
doctest failure in ~/.julia/packages/CrystallographyCore/ODYu5/src/lattice.jl:57-93 ```jldoctest julia> Lattice([[1.2, 2.3, 3.4], [4.5, 5.6, 6.7], [7.8, 8.9, 9.10]]) 3×3 Lattice{Float64} 1.2 4.5 7.8 2.3 5.6 8.9 3.4 6.7 9.1 julia> Lattice(((1.1, 2.2, 3.1), (4.4, 5.5, 6.5), (7.3, 8.8, 9.9))) 3×3 Lattice{Float64} 1.1 4.4 7.3 2.2 5.5 8.8 3.1 6.5 9.9 julia> Lattice((1.1, 2.2, 3.1, 4.4, 5.5, 6.5, 7.3, 8.8, 9.9)) 3×3 Lattice{Float64} 1.1 4.4 7.3 2.2 5.5 8.8 3.1 6.5 9.9 julia> Lattice(i * 1.1 for i in 1:9) 3×3 Lattice{Float64} 1.1 4.4 7.700000000000001 2.2 5.5 8.8 3.3000000000000003 6.6000000000000005 9.9 julia> using Unitful, UnitfulAtomic julia> Lattice([ [4u"nm", 0u"m", 0.0u"cm"], [0u"cm", 180.0u"bohr", 0u"m"], [0u"bohr", 0u"nm", (3//1) * u"angstrom"], ]) 3×3 Lattice{Quantity{Float64, 𝐋, Unitful.FreeUnits{(m,), 𝐋, nothing}}} 4.0e-9 m 0.0 m 0.0 m 0.0 m 9.525189796254e-9 m 0.0 m 0.0 m 0.0 m 3.0e-10 m ``` Subexpression: using Unitful, UnitfulAtomic Evaluated output: ERROR: ArgumentError: Package Unitful not found in current path. - Run `import Pkg; Pkg.add("Unitful")` to install the Unitful package. Stacktrace: [1] macro expansion @ ./loading.jl:1630 [inlined] [2] macro expansion @ ./lock.jl:267 [inlined] [3] require(into::Module, mod::Symbol) @ Base ./loading.jl:1611 Expected output: diff = Warning: Diff output requires color. ERROR: ArgumentError: Package Unitful not found in current path. - Run `import Pkg; Pkg.add("Unitful")` to install the Unitful package. Stacktrace: [1] macro expansion @ ./loading.jl:1630 [inlined] [2] macro expansion @ ./lock.jl:267 [inlined] [3] require(into::Module, mod::Symbol) @ Base ./loading.jl:1611
Documentation: ../../../.julia/packages/CrystallographyCore/ODYu5/src/lattice.jl#L57
doctest failure in ~/.julia/packages/CrystallographyCore/ODYu5/src/lattice.jl:57-93 ```jldoctest julia> Lattice([[1.2, 2.3, 3.4], [4.5, 5.6, 6.7], [7.8, 8.9, 9.10]]) 3×3 Lattice{Float64} 1.2 4.5 7.8 2.3 5.6 8.9 3.4 6.7 9.1 julia> Lattice(((1.1, 2.2, 3.1), (4.4, 5.5, 6.5), (7.3, 8.8, 9.9))) 3×3 Lattice{Float64} 1.1 4.4 7.3 2.2 5.5 8.8 3.1 6.5 9.9 julia> Lattice((1.1, 2.2, 3.1, 4.4, 5.5, 6.5, 7.3, 8.8, 9.9)) 3×3 Lattice{Float64} 1.1 4.4 7.3 2.2 5.5 8.8 3.1 6.5 9.9 julia> Lattice(i * 1.1 for i in 1:9) 3×3 Lattice{Float64} 1.1 4.4 7.700000000000001 2.2 5.5 8.8 3.3000000000000003 6.6000000000000005 9.9 julia> using Unitful, UnitfulAtomic julia> Lattice([ [4u"nm", 0u"m", 0.0u"cm"], [0u"cm", 180.0u"bohr", 0u"m"], [0u"bohr", 0u"nm", (3//1) * u"angstrom"], ]) 3×3 Lattice{Quantity{Float64, 𝐋, Unitful.FreeUnits{(m,), 𝐋, nothing}}} 4.0e-9 m 0.0 m 0.0 m 0.0 m 9.525189796254e-9 m 0.0 m 0.0 m 0.0 m 3.0e-10 m ``` Subexpression: Lattice([ Evaluated output: ERROR: syntax: incomplete: premature end of input Stacktrace: [1] top-level scope @ none:1 Expected output: [4u"nm", 0u"m", 0.0u"cm"], [0u"cm", 180.0u"bohr", 0u"m"], [0u"bohr", 0u"nm", (3//1) * u"angstrom"], ]) 3×3 Lattice{Quantity{Float64, 𝐋, Unitful.FreeUnits{(m,), 𝐋, nothing}}} 4.0e-9 m 0.0 m 0.0 m 0.0 m 9.525189796254e-9 m 0.0 m 0.0 m 0.0 m 3.0e-10 m diff = Warning: Diff output requires color. [4u"nm", 0u"m", 0.0u"cm"], [0u"cm", 180.0u"bohr", 0u"m"], [0u"bohr", 0u"nm", (3//1) * u"angstrom"], ]) 3×3 Lattice{Quantity{Float64, 𝐋, Unitful.FreeUnits{(m,), 𝐋, nothing}}} 4.0e-9 m 0.0 m 0.0 m 0.0 m 9.525189796254e-9 m 0.0 m 0.0 m 0.0 m 3.0e-10 mERROR: syntax: incomplete: premature end of input Stacktrace: [1] top-level scope @ none:1
Documentation: src/symmetry.jl#L53
doctest failure in ~/work/Spglib.jl/Spglib.jl/src/symmetry.jl:53-78 ```jldoctest julia> lattice = Lattice([ [5.0759761474456697, 5.0759761474456697, 0], [-2.8280307701821314, 2.8280307701821314, 0], [0, 0, 8.57154746], ]); julia> positions = [ [0.0, 0.84688439, 0.1203133], [0.0, 0.65311561, 0.6203133], [0.0, 0.34688439, 0.3796867], [0.0, 0.15311561, 0.8796867], [0.5, 0.34688439, 0.1203133], [0.5, 0.15311561, 0.6203133], [0.5, 0.84688439, 0.3796867], [0.5, 0.65311561, 0.8796867], ]; julia> atoms = fill(35, length(positions)); julia> cell = SpglibCell(lattice, positions, atoms); julia> rotations, translations = get_symmetry(cell); julia> size(rotations) == size(translations) == (16,) ``` Subexpression: lattice = Lattice([ Evaluated output: ERROR: syntax: incomplete: premature end of input Stacktrace: [1] top-level scope @ none:1 Expected output: [5.0759761474456697, 5.0759761474456697, 0], [-2.8280307701821314, 2.8280307701821314, 0], [0, 0, 8.57154746], ]); diff = Warning: Diff output requires color. [5.0759761474456697, 5.0759761474456697, 0], [-2.8280307701821314, 2.8280307701821314, 0], [0, 0, 8.57154746], ]);ERROR: syntax: incomplete: premature end of input Stacktrace: [1] top-level scope @ none:1
Documentation: src/symmetry.jl#L53
doctest failure in ~/work/Spglib.jl/Spglib.jl/src/symmetry.jl:53-78 ```jldoctest julia> lattice = Lattice([ [5.0759761474456697, 5.0759761474456697, 0], [-2.8280307701821314, 2.8280307701821314, 0], [0, 0, 8.57154746], ]); julia> positions = [ [0.0, 0.84688439, 0.1203133], [0.0, 0.65311561, 0.6203133], [0.0, 0.34688439, 0.3796867], [0.0, 0.15311561, 0.8796867], [0.5, 0.34688439, 0.1203133], [0.5, 0.15311561, 0.6203133], [0.5, 0.84688439, 0.3796867], [0.5, 0.65311561, 0.8796867], ]; julia> atoms = fill(35, length(positions)); julia> cell = SpglibCell(lattice, positions, atoms); julia> rotations, translations = get_symmetry(cell); julia> size(rotations) == size(translations) == (16,) ``` Subexpression: positions = [ Evaluated output: ERROR: syntax: incomplete: premature end of input Stacktrace: [1] top-level scope @ none:1 Expected output: [0.0, 0.84688439, 0.1203133], [0.0, 0.65311561, 0.6203133], [0.0, 0.34688439, 0.3796867], [0.0, 0.15311561, 0.8796867], [0.5, 0.34688439, 0.1203133], [0.5, 0.15311561, 0.6203133], [0.5, 0.84688439, 0.3796867], [0.5, 0.65311561, 0.8796867], ]; diff = Warning: Diff output requires color. [0.0, 0.84688439, 0.1203133], [0.0, 0.65311561, 0.6203133], [0.0, 0.34688439, 0.3796867], [0.0, 0.15311561, 0.8796867], [0.5, 0.34688439, 0.1203133], [0.5, 0.15311561, 0.6203133], [0.5, 0.84688439, 0.3796867], [0.5, 0.65311561, 0.8796867], ];ERROR: syntax: incomplete: premature end of input Stacktrace: [1] top-level scope @ none:1
Documentation
Process completed with exit code 1.
Julia 1.3 - windows-latest - x64 - push
Process completed with exit code 1.
Julia 1.3 - windows-latest - x86 - push
Process completed with exit code 1.
Julia 1.5 - windows-latest - x86 - push
Process completed with exit code 1.
Julia 1.4 - windows-latest - x86 - push
Process completed with exit code 1.
Documentation: ../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
undefined binding 'atomtypes' in `@docs` block in src/lib/public.md:31-53 ```@docs basis_vectors natoms atomtypes get_symmetry get_symmetry_from_database get_dataset get_dataset_with_hall_number get_multiplicity get_international get_schoenflies get_spacegroup_type get_spacegroup_type_from_symmetry get_hall_number_from_symmetry standardize_cell find_primitive refine_cell niggli_reduce delaunay_reduce get_ir_reciprocal_mesh get_stabilized_reciprocal_mesh get_version ```
Documentation: ../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
no docs found for 'get_stabilized_reciprocal_mesh' in `@docs` block in src/lib/public.md:31-53 ```@docs basis_vectors natoms atomtypes get_symmetry get_symmetry_from_database get_dataset get_dataset_with_hall_number get_multiplicity get_international get_schoenflies get_spacegroup_type get_spacegroup_type_from_symmetry get_hall_number_from_symmetry standardize_cell find_primitive refine_cell niggli_reduce delaunay_reduce get_ir_reciprocal_mesh get_stabilized_reciprocal_mesh get_version ```
Documentation: ../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
reference for 'Transformation-matrix-and-origin-shift' could not be found in src/lib/public.md.
Documentation: ../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
reference for 'Transformation-matrix-and-origin-shift' could not be found in src/lib/public.md.
Documentation: ../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
reference for 'Wyckoff-positions-and-symmetrically-equivalent-atoms' could not be found in src/lib/public.md.
Documentation: ../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
reference for 'Standardized-crystal-structure-after-idealization' could not be found in src/lib/public.md.
Documentation: ../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
no doc found for reference '[`get_symmetry_with_collinear_spin`](@ref)' in src/lib/public.md.
Documentation: ../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
no doc found for reference '[`spg_get_dataset`](@ref)' in src/lib/public.md.
Documentation: ../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
5 docstrings not included in the manual: CrystallographyCore.basisvectors :: Tuple{Lattice} CrystallographyCore.Cell CrystallographyCore.AbstractLattice CrystallographyCore.atomtypes :: Tuple{SpglibCell} CrystallographyCore.eachatom :: Tuple{CrystallographyCore.Cell} These are docstrings in the checked modules (configured with the modules keyword) that are not included in @docs or @autodocs blocks.
Documentation: ../../../.julia/packages/Documenter/bYYzK/src/Writers/HTMLWriter.jl#L2081
invalid local link: unresolved path in lib/public.md link.text = 1-element Vector{Any}: "Transformation matrix and origin shift" link.url = "@ref"