We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d149c5c + 382f149 commit 23bc8a2Copy full SHA for 23bc8a2
.travis.yml
@@ -20,7 +20,7 @@ jobs:
20
julia: 1.0
21
os: linux
22
script:
23
- - julia --project=docs -e 'using Pkg; Pkg.add("Documenter"); Pkg.instantiate()'
+ - julia --project=docs -e 'using Pkg; ps=Pkg.PackageSpec(name="Documenter", version="0.19"); Pkg.add(ps); Pkg.pin(ps); Pkg.instantiate()'
24
- julia --project=docs --color=yes docs/make.jl
25
after_success: skip
26
notifications:
src/simulate.jl
@@ -124,7 +124,7 @@ function LinearAlgebra.Cholesky(L::LowerTriangular) # FIXME: this is type pirac
124
break
125
end
126
127
- Cholesky(L, 'L', info)
+ Cholesky(L, 'L', LinearAlgebra.BlasInt(info))
128
129
130
"""
0 commit comments