Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ os:
- linux

julia:
- 0.5
- 0.6
- nightly

notifications:
email: false

#script: # use the default script setting, which is equivalent to the following
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("KrylovMethods"); Pkg.test("KrylovMethods"; coverage=true)'
Expand Down
1 change: 1 addition & 0 deletions REQUIRE
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
julia 0.5
Compat
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
environment:
matrix:
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/0.5/julia-0.5-latest-win32.exe"
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe"
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/0.6/julia-0.6-latest-win32.exe"
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.6/julia-0.6-latest-win64.exe"
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"

Expand Down
15 changes: 9 additions & 6 deletions src/KrylovMethods.jl
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
__precompile__()

module KrylovMethods

import Base.BLAS

using Compat

include("cg.jl")
include("blockCG.jl")
include("cgls.jl")
include("bicgstb.jl")
include("blockBiCGSTB.jl")
include("gmres.jl")
include("gmres.jl")
include("lanczosBidiag.jl")
include("ssor.jl")
include("lsqr.jl")
include("ssor.jl")
include("lsqr.jl")
include("lanczosTridiag.jl")
include("lanczos.jl")
include("minres.jl")
include("gs.jl")
end
end
2 changes: 1 addition & 1 deletion src/blockCG.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Input:
X - array of starting guesses (will be overwritten)
out - flag for output (-1: no output, 0: only errors, 1: final status, 2: residual norm at each iteration)
ortho - flag for re-orthogonalization (default: false)
pinvTol - tolerance for pseudoinverse (default: eps(T)*size(B,1))
pinvTol - tolerance for pseudoinverse (default: eps(T)\*size(B,1))
storeInterm - flag for storing iterates (default: false)

Output:
Expand Down