fixed some bugs
parent
430d853f77
commit
b88fef4c4b
@ -1,6 +1,8 @@
|
||||
build*/
|
||||
.spack-env/
|
||||
|
||||
*.local*
|
||||
|
||||
*.log
|
||||
*.out
|
||||
*.lock?
|
||||
@ -1,6 +1,11 @@
|
||||
using SparseArrays
|
||||
using MAT
|
||||
|
||||
if len(ARGS) == 0
|
||||
println("Usage: julia laplacian.jl <N>")
|
||||
exit(1)
|
||||
end
|
||||
|
||||
N = parse(Int, ARGS[1])
|
||||
println("Generating 3D Laplacian for size $N")
|
||||
|
||||
Loading…
Reference in New Issue