Skip to content

Commit

Permalink
Merge pull request #57 from jagot/master
Browse files Browse the repository at this point in the history
Int64 -> Int to work on Win32 as well
  • Loading branch information
ranjanan authored Feb 25, 2019
2 parents 4c1b721 + 017006c commit aba3184
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ julia:
- 0.6
- 0.7
- 1.0
- 1.1
- nightly
notifications:
email: false
Expand Down
3 changes: 2 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
environment:
matrix:
- julia_version: 1
- julia_version: 1.1
- julia_version: 1.0
- julia_version: 0.6

platform:
Expand Down
4 changes: 2 additions & 2 deletions src/classical.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ struct Solver{S,T,P,PS}
CF::T
presmoother::P
postsmoother::PS
max_levels::Int64
max_coarse::Int64
max_levels::Int
max_coarse::Int
end

function ruge_stuben(_A::Union{TA, Symmetric{Ti, TA}, Hermitian{Ti, TA}},
Expand Down

0 comments on commit aba3184

Please sign in to comment.