Skip to content

Commit

Permalink
Fix job names in src/EquationOfStateWorkflow/Recipes.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
singularitti committed Oct 24, 2023
1 parent 783931a commit ae8d17a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/EquationOfStateWorkflow/Recipes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,11 @@ function stage(::VariableCellOptimization, r::ParallelEosFittingRecipe)
first(iterate(steps)),
)
extractcells = map(
thunk -> ConditionalJob(thunk; name="extract cell in SCF"), first(iterate(steps))
thunk -> ConditionalJob(thunk; name="extract cell in vc-relax"),
first(iterate(steps)),
)
savecells = map(
thunk -> ArgDependentJob(thunk; name="save cell in SCF"), first(iterate(steps))
thunk -> ArgDependentJob(thunk; name="save cell in vc-relax"), first(iterate(steps))
)
extractdata = map(
thunk -> ConditionalJob(thunk; name="extract E(V) data in vc-relax"),
Expand Down

0 comments on commit ae8d17a

Please sign in to comment.