modeci_mdf.functions.actr

Contains implementations of ACT-R functions using the ccm library.

Functions

change_goal(pattern, curr_goal)

Modifies the current goal buffer using the given pattern.

check_termination(production)

Function used to check if no production was selected.

chunk_to_string(chunk)

Converts a chunk dictionary to a string format.

conflict_resolution_function(productions)

ACT-R conflict resolution function.

match_production(production, context)

Returns True if the production's left hand side matches the given context and adds the matching bindings to the production.

pattern_matching_function(productions, goal, ...)

Returns the productions that match the given goal and retrieval buffers.

pattern_to_string(pattern)

Converts a pattern dictionary to a string format.

retrieve_chunk(pattern, dm_chunks, types)

Retrieve a chunk from declarative memory given a pattern.

update_buffer(production, buffer)

Returns a pattern to update the given buffer with.

update_goal(production)

Returns a pattern to update the goal buffer with.

update_retrieval(production)

Returns a pattern to update the retrieval buffer with.

modeci_mdf.functions.actr.ccm