-- | Defines concepts used in computing, to be used internally. module Drasil.Metadata.Concepts.Computation (algorithm) where import Language.Drasil (cn', ConceptChunk, cncpt''', Sentence(..)) import Drasil.Database (mkUid) algorithm :: ConceptChunk algorithm :: ConceptChunk algorithm = UID -> NP -> Sentence -> ConceptChunk cncpt''' (String -> UID mkUid String "algorithm") (String -> NP cn' String "algorithm") (String -> Sentence S String "a series of steps to be followed in calculations and problem-solving operations")