diff options
| author | Ian Jauslin <ian.jauslin@rutgers.edu> | 2025-12-14 11:22:09 -0500 |
|---|---|---|
| committer | Ian Jauslin <ian.jauslin@rutgers.edu> | 2025-12-14 11:22:09 -0500 |
| commit | c121946e2b6fe95f75dde5c2388c4b68d754e05c (patch) | |
| tree | 50bed42b68d518a53acd81d1c1e0fbfb128915d1 /src | |
| parent | 69974b73dcaf28996ba87aacbcdaede16ded6941 (diff) | |
Fix simpleq-iteration types
Diffstat (limited to 'src')
| -rw-r--r-- | src/anyeq.jl | 2 | ||||
| -rw-r--r-- | src/chebyshev.jl | 2 | ||||
| -rw-r--r-- | src/easyeq.jl | 2 | ||||
| -rw-r--r-- | src/integration.jl | 2 | ||||
| -rw-r--r-- | src/interpolation.jl | 2 | ||||
| -rw-r--r-- | src/main.jl | 4 | ||||
| -rw-r--r-- | src/potentials.jl | 2 | ||||
| -rw-r--r-- | src/print.jl | 2 | ||||
| -rw-r--r-- | src/simpleq-Kv.jl | 2 | ||||
| -rw-r--r-- | src/simpleq-hardcore.jl | 2 | ||||
| -rw-r--r-- | src/simpleq-iteration.jl | 6 | ||||
| -rw-r--r-- | src/tools.jl | 2 |
12 files changed, 15 insertions, 15 deletions
diff --git a/src/anyeq.jl b/src/anyeq.jl index 79d1ddd..4066c3a 100644 --- a/src/anyeq.jl +++ b/src/anyeq.jl @@ -1,4 +1,4 @@ -## Copyright 2021-2024 Ian Jauslin +## Copyright 2021-2025 Ian Jauslin ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. diff --git a/src/chebyshev.jl b/src/chebyshev.jl index f3103d0..a138804 100644 --- a/src/chebyshev.jl +++ b/src/chebyshev.jl @@ -1,4 +1,4 @@ -## Copyright 2021-2024 Ian Jauslin +## Copyright 2021-2025 Ian Jauslin ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. diff --git a/src/easyeq.jl b/src/easyeq.jl index ea44d9e..0ce7efc 100644 --- a/src/easyeq.jl +++ b/src/easyeq.jl @@ -1,4 +1,4 @@ -## Copyright 2021-2024 Ian Jauslin +## Copyright 2021-2025 Ian Jauslin ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. diff --git a/src/integration.jl b/src/integration.jl index 4d10138..e5ce90b 100644 --- a/src/integration.jl +++ b/src/integration.jl @@ -1,4 +1,4 @@ -## Copyright 2021-2024 Ian Jauslin +## Copyright 2021-2025 Ian Jauslin ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. diff --git a/src/interpolation.jl b/src/interpolation.jl index d3a8161..aa42064 100644 --- a/src/interpolation.jl +++ b/src/interpolation.jl @@ -1,4 +1,4 @@ -## Copyright 2021-2024 Ian Jauslin +## Copyright 2021-2025 Ian Jauslin ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. diff --git a/src/main.jl b/src/main.jl index 9de9a0a..ff5f76e 100644 --- a/src/main.jl +++ b/src/main.jl @@ -1,4 +1,4 @@ -## Copyright 2021-2024 Ian Jauslin +## Copyright 2021-2025 Ian Jauslin ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. @@ -377,7 +377,7 @@ function main() end elseif method=="simpleq-iteration" # u_n(x) using iteration - if command=="u" + if command=="ux" simpleq_iteration_ux(order,e,v,maxiter,xmin,xmax,nx) # rho(e) using iteration elseif command=="rho_e" diff --git a/src/potentials.jl b/src/potentials.jl index 01ce845..ae72a18 100644 --- a/src/potentials.jl +++ b/src/potentials.jl @@ -1,4 +1,4 @@ -## Copyright 2021-2024 Ian Jauslin +## Copyright 2021-2025 Ian Jauslin ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. diff --git a/src/print.jl b/src/print.jl index b7f2215..27f0c10 100644 --- a/src/print.jl +++ b/src/print.jl @@ -1,4 +1,4 @@ -## Copyright 2021-2024 Ian Jauslin +## Copyright 2021-2025 Ian Jauslin ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. diff --git a/src/simpleq-Kv.jl b/src/simpleq-Kv.jl index e61e464..97a032a 100644 --- a/src/simpleq-Kv.jl +++ b/src/simpleq-Kv.jl @@ -1,4 +1,4 @@ -## Copyright 2021-2024 Ian Jauslin +## Copyright 2021-2025 Ian Jauslin ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. diff --git a/src/simpleq-hardcore.jl b/src/simpleq-hardcore.jl index 58fccb4..4dea538 100644 --- a/src/simpleq-hardcore.jl +++ b/src/simpleq-hardcore.jl @@ -1,4 +1,4 @@ -## Copyright 2021-2024 Ian Jauslin +## Copyright 2021-2025 Ian Jauslin ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. diff --git a/src/simpleq-iteration.jl b/src/simpleq-iteration.jl index 5cef5c8..4252af0 100644 --- a/src/simpleq-iteration.jl +++ b/src/simpleq-iteration.jl @@ -1,4 +1,4 @@ -## Copyright 2021-2024 Ian Jauslin +## Copyright 2021-2025 Ian Jauslin ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. @@ -81,7 +81,7 @@ end function simpleq_iteration_A( e::Float64, weights::Tuple{Array{Float64,1},Array{Float64,1}}, - Eta::Array{Float64,1} + Eta::Array{Array{Float64,1},1} ) N=length(weights[1]) out=zeros(Float64,N,N) @@ -116,7 +116,7 @@ function simpleq_iteration_rhon( e::Float64, weights::Tuple{Array{Float64,1},Array{Float64,1}}, V0::Float64, - Eta0::Float64 + Eta0::Array{Float64,1} ) S=V0 for i in 1:length(weights[1]) diff --git a/src/tools.jl b/src/tools.jl index f2336f7..2273302 100644 --- a/src/tools.jl +++ b/src/tools.jl @@ -1,4 +1,4 @@ -## Copyright 2021-2024 Ian Jauslin +## Copyright 2021-2025 Ian Jauslin ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. |
