ACT-R

1 program Added 2026-03-12T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Adaptive Control of Thought-Rational, ACT-R/PM
Provenance: commit d81b881f38 · authored 2026-03-12T10:39:47+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

FRAN (0.14)FrTime (0.13)Control Language (0.12)ACSL (0.12)CAL (0.12)

LLM-contributed programs

Counting Model (Tutorial Unit 1)

Provenance: commit d81b881f38 · authored 2026-03-12T10:39:47+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.lisp · added: 2026-03-12T10:00:00Z
(clear-all)

(define-model count

  (sgp :v t)

  (chunk-type count-order first second)
  (chunk-type count-from start end count)

  (add-dm
   (b isa count-order first 1 second 2)
   (c isa count-order first 2 second 3)
   (d isa count-order first 3 second 4)
   (e isa count-order first 4 second 5)
   (f isa count-order first 5 second 6)
   (first-goal isa count-from start 2 end 4))

  (goal-focus first-goal)

  (p start
    =goal>
    isa count-from
    start =num1
    count nil
   ==>
    =goal>
    count =num1
    +retrieval>
    isa count-order
    first =num1)

  (p increment
    =goal>
    isa count-from
    count =num1
    =retrieval>
    isa count-order
    first =num1
    second =num2
   ==>
    =goal>
    count =num2
    +retrieval>
    isa count-order
    first =num2)

  (p stop
    =goal>
    isa count-from
    end =num
    count =num
   ==>
    -goal>))

Contribute — propose a file extension

Tell us where to find evidence about ACT-R (mapped to pl/act_r). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/ACT-R/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← act-one Actalk →