docs: clarify threading model guidance#1049
Merged
stephenamar-db merged 1 commit intoJun 25, 2026
Merged
Conversation
ea20873 to
3a91b30
Compare
He-Pin
commented
Jun 25, 2026
| - **No internal multithreading requirement**: A single `Interpreter` does not need to evaluate a program using multiple threads. | ||
| - **Independent interpreters should be concurrency-friendly**: Applications should be able to run multiple independent `Interpreter` instances concurrently in the same JVM. | ||
| - **Shared mutable state is exceptional**: State should belong to an interpreter or evaluation unless it has an explicit concurrency contract and tests. | ||
|
|
Motivation: Prevent future AI-assisted changes from introducing unsafe assumptions about interpreter threading or shared state. Modification: Add a Threading Model section to CLAUDE.md covering allowed parallel evaluation, interpreter isolation, and explicit contracts for shared mutable state. Result: Repository guidance now supports future parallel evaluation while preserving deterministic behavior and cross-platform interpreter isolation.
3a91b30 to
ba03948
Compare
stephenamar-db
approved these changes
Jun 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Verification