From 42e49e9896fc1d52adb531c0fab3f4876cbe88b1 Mon Sep 17 00:00:00 2001 From: singularitti Date: Mon, 20 Nov 2023 03:26:07 -0500 Subject: [PATCH] Fix `think` for `CreateInput` --- src/MD/think.jl | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/MD/think.jl b/src/MD/think.jl index 5fdb5596..bee6bbab 100644 --- a/src/MD/think.jl +++ b/src/MD/think.jl @@ -8,8 +8,6 @@ import ExpressBase: think think(action::CreateInput, conf::Conf) = collect(Thunk(action(conf.template)) for _ in Base.OneTo(length(conf.at))) -think(action::CreateInput{<:MolecularDynamics}, conf::Conf) = - collect(Thunk(action, template) for template in first.(conf.io)) think(action::ExtractCell, conf::Conf) = collect(Thunk(action, file) for file in last.(conf.io)) function think(action::Action{T}, config::StaticConfig) where {T}