Skip to content

Commit

Permalink
Add .gitignore and avoid deprecated warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
YingboMa committed Jul 25, 2016
1 parent b8a898c commit 8b503c8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions src/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
### Julia ###
*.jl.cov
*.jl.*.cov
*.jl.mem
*.ipynb_checkpoints
deps/deps.jl
4 changes: 2 additions & 2 deletions src/radau.jl
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,8 @@ function trialstep!(st)

## Matrices used for one round of iteration
Ginv = inv(G)
@compat Ginv_block = Array{Float64,2}[Ginv[i*dof + [1:dof], j*dof+[1:dof]] for i = 0:stageNum-1, j= 0:stageNum-1]
@compat AoplusI_block = Array{Float64,2}[btab.a[i,j]*I_N for i=1:stageNum, j=1:stageNum]
Ginv_block = Array{Float64,2}[Ginv[i*dof + [1:dof;], j*dof+[1:dof;]] for i = 0:stageNum-1, j= 0:stageNum-1]
AoplusI_block = Array{Float64,2}[btab.a[i,j]*I_N for i=1:stageNum, j=1:stageNum]

iterate = true
count = 0
Expand Down

0 comments on commit 8b503c8

Please sign in to comment.