Skip to content

Commit aba3184

Browse files
authored
Merge pull request #57 from jagot/master
Int64 -> Int to work on Win32 as well
2 parents 4c1b721 + 017006c commit aba3184

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ julia:
66
- 0.6
77
- 0.7
88
- 1.0
9+
- 1.1
910
- nightly
1011
notifications:
1112
email: false

appveyor.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
environment:
22
matrix:
3-
- julia_version: 1
3+
- julia_version: 1.1
4+
- julia_version: 1.0
45
- julia_version: 0.6
56

67
platform:

src/classical.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ struct Solver{S,T,P,PS}
33
CF::T
44
presmoother::P
55
postsmoother::PS
6-
max_levels::Int64
7-
max_coarse::Int64
6+
max_levels::Int
7+
max_coarse::Int
88
end
99

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

0 commit comments

Comments
 (0)