From 15160c47a04e89ef4a5e6a6950e0fee55dce9d2a Mon Sep 17 00:00:00 2001 From: itsdfish Date: Tue, 17 Oct 2023 09:12:57 -0400 Subject: [PATCH] remove unnecessary function --- Project.toml | 2 +- src/MemoryFunctions.jl | 20 -------------------- 2 files changed, 1 insertion(+), 21 deletions(-) diff --git a/Project.toml b/Project.toml index 57dda58..55f6d6c 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "ACTRModels" uuid = "c095b0ea-a6ca-5cbd-afed-dbab2e976880" authors = ["itsdfish"] -version = "0.12.4" +version = "0.12.5" [deps] ConcreteStructs = "2569d6c7-a4a2-43d3-a901-331e8e4be471" diff --git a/src/MemoryFunctions.jl b/src/MemoryFunctions.jl index 9c9b2ca..c50823f 100644 --- a/src/MemoryFunctions.jl +++ b/src/MemoryFunctions.jl @@ -1175,26 +1175,6 @@ function get_parm(actr::AbstractACTR, p) return getfield(actr.parms, p) end -""" - blend_chunks(actr::AbstractACTR; request...) - -Computes blended value over chunks given a retrieval request. By default, -values are blended over the set of slots formed by the set difference between all -slots of a chunk and the slots specified in the retrieval request. The default time used -in activation calculations is taken from `get_time`. - -# Arguments - -- `actr::AbstractACTR`: an `ACTR` model object - -# Keywords - -- `request...`: optional keywords for the retrieval request -""" -function blend_chunks(actr::AbstractACTR; request...) - return blend_chunks(actr, get_time(actr); request...) -end - """ blend_chunks(actr::AbstractACTR, blended_slots; request...)