Skip to content

Commit

Permalink
Fix arg trial_eos position in MakeInput in src/EquationOfStateWor…
Browse files Browse the repository at this point in the history
…kflow/actions.jl
  • Loading branch information
singularitti committed Nov 29, 2022
1 parent 19e1eeb commit d3700dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/EquationOfStateWorkflow/actions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function buildjob(x::MakeInput{Scf}, cfgfile)
return map(inputs, config.fixed) do input, pressure
Job(function ()
trial_eos = PressureEquation(config.trial_eos)
return x(input, config.template, trial_eos, pressure, "Y-m-d_H:M:S")
return x(input, config.template, pressure, trial_eos, "Y-m-d_H:M:S")
end)
end
end
Expand All @@ -79,7 +79,7 @@ function buildjob(x::MakeInput{T}, cfgfile) where {T<:Optimization}
EnergyEquation(config.trial_eos),
),
)
return x(input, config.template, trial_eos, pressure, "Y-m-d_H:M:S")
return x(input, config.template, pressure, trial_eos, "Y-m-d_H:M:S")
end,
)
end
Expand Down

0 comments on commit d3700dd

Please sign in to comment.