Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
itsdfish committed Dec 26, 2020
1 parent 268eedc commit 00b3b40
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ACTRModels"
uuid = "c095b0ea-a6ca-5cbd-afed-dbab2e976880"
authors = ["itsdfish"]
version = "0.4.8"
version = "0.5.0"

[deps]
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Random.seed!(87545)
chunks = [Chunk(;name=:Bob, department=:accounting),
Chunk(;name=:Alice, department=:HR)]

memory = Declarative(memory=chunks, mmp=true, δ=1.0, noise=true, s=.2)
memory = Declarative(memory=chunks)

actr = ACTR(;declarative=memory)
actr = ACTR(;declarative=memory, mmp=true, δ=1.0, noise=true, s=.2)

chunk = retrieve(actr; department=:accounting)
rt = compute_RT(actr, chunk)
Expand Down
2 changes: 1 addition & 1 deletion src/ACTRModels.jl
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ to see documentation for `print_memory`.
"""
module ACTRModels
using Reexport
@reexport using Distributions, Parameters, Random
@reexport using Distributions, Parameters, Random, StatsBase, StatsFuns
import Distributions: pdf, logpdf
import SequentialSamplingModels: LNR
import Base: rand, match
Expand Down

0 comments on commit 00b3b40

Please sign in to comment.