{"_self":{"principle":"Self-explaining payload — no external context required. This _self block describes what you are reading and where to look next.","widget":"article_topology","feature":"topology","name":"Article topology","what":"Claims, sources, anecdotes, user reports, related embeds, question graph slice — for ask/ROUTER.","contains":"claims, sources, anecdotes, question_graph slice","slug":"thinker-carl-hewitt","urls":{"read":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/topology"},"how_to_use":"Claims, sources, anecdotes, user reports, related embeds, question graph slice — for ask/ROUTER.","write":null,"imessage":null,"router_tag":null,"proof_chain":[{"step":1,"claim":"Articles are voxel graphs of tiered claims, not prose blobs.","verify":"https://miscsubjects.com/api/articles/constitution"},{"step":2,"claim":"Claims link to hash-chained sources via source_ids.","verify":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/sources"},{"step":3,"claim":"Ask reads topology; ingest/claim append to ledger.","verify":"https://miscsubjects.com/api/protocol"},{"step":4,"claim":"Models queue growth: populate → collaborate → repair → reflex.","verify":"https://miscsubjects.com/api/protocol/grow"},{"step":5,"claim":"Graph proves its own shape (reflex) and $/claim (yield).","verify":"https://miscsubjects.com/graph.html?layer=reflex"},{"step":6,"claim":"Full feature index + _explain on every API response.","verify":"https://miscsubjects.com/api/articles/system-map"}],"related_features":[{"id":"ask","name":"Ask protocol","what":"Answer only from topology; creates question_node with gaps and ingest_hint.","urls":{"read":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/prompts","write":"https://miscsubjects.com/api/protocol/ask"}},{"id":"graph_topology","name":"Cross-article graph","what":"Merged claims/sources across condition+stack slugs for one question.","urls":{"read":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/graph-topology?question=..."}},{"id":"question_graph","name":"Question graph","what":"Ask nodes (questions + gaps) and evidence_ingest nodes (pasted model output).","urls":{"read":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/question-graph","write":"https://miscsubjects.com/api/protocol/ask"}},{"id":"voxels","name":"Voxel graph","what":"Claims as atoms, sources as edges (supported_by, posted_by). Per-claim provenance.","urls":{"read":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/voxels","write":"https://miscsubjects.com/api/protocol/claim"}}],"system_map":"https://miscsubjects.com/api/articles/system-map","system_map_markdown":"https://miscsubjects.com/api/articles/system-map?format=markdown","not_medical_advice":true},"_explain":{"feature":"topology","name":"Article topology","what":"Claims, sources, anecdotes, user reports, related embeds, question graph slice — for ask/ROUTER.","why":"Every feature is auditable collective intelligence","how":"Claims, sources, anecdotes, user reports, related embeds, question graph slice — for ask/ROUTER.","model":null,"verifies":null,"urls":{"read":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/topology"},"imessage":null,"router":null,"related":[{"id":"ask","what":"Answer only from topology; creates question_node with gaps and ingest_hint."},{"id":"graph_topology","what":"Merged claims/sources across condition+stack slugs for one question."},{"id":"question_graph","what":"Ask nodes (questions + gaps) and evidence_ingest nodes (pasted model output)."},{"id":"voxels","what":"Claims as atoms, sources as edges (supported_by, posted_by). Per-claim provenance."}],"not_medical_advice":true},"slug":"thinker-carl-hewitt","title":"Carl Hewitt — The Actor Model","register":"standard","tags":["oip","kimi-import","self-explaining","voxel","thinkers","thinker-carl-hewitt"],"updated_at":"2026-07-15T04:20:30.052Z","body_excerpt":"<!-- hierarchy:nav -->\n> **Path:** [OIP](https://miscsubjects.com/a/oip) › [Thinker Reference](https://miscsubjects.com/a/oip-thinker-reference) › [Thinkers](https://miscsubjects.com/a/oip-thinkers) › **Carl Hewitt — The Actor Model**\n>\n> **Shelf:** Thinkers · **Traversal:** self-explaining · hierarchical · voxel-ready\n> **Machine root:** [OIP tree](https://miscsubjects.com/api/dispatch?map=1&format=markdown) · [Registry](https://miscsubjects.com/api/dispatch?registry=1)\n\n# Carl Hewitt — The Actor Model\n\n## §SELF — thinker-carl-hewitt\n\n**What this page is:** A profile of Carl Hewitt and the Actor Model of computation.\n**What it explains:** The Actor Model — what it is, how it works, and why it matters for concurrent systems.\n**Why read it:** To understand the fundamental unit of concurrent computation and how it applies to OIP.\n\n### What the Actor Model Is\n\nThe Actor Model is a theory of computation where the fundamental unit is an \"actor\" — an entity that receives messages, processes them, and sends messages to other actors. Carl Hewitt introduced it in 1973 in his paper \"A Universal Modular Actor Formalism for Artificial Intelligence.\"\n\nAn actor is an independent, concurrent, autonomous entity. It encapsulates state (internal data not accessible from outside), communicates only by message passing (no shared memory, no direct function calls), and processes one message at a time (messages handled sequentially within an actor, but actors run concurrently with each other).\n\nActors have three primitive operations: they can create new actors, send messages to actors they know about (their \"acquaintances\"), and change their own behavior for the next message they receive.\n\n### Why It Matters\n\nBefore the Actor Model, concurrent programming relied on shared memory and locks — which leads to race conditions, deadlocks, and non-deterministic behavior. The Actor Model eliminates these problems by design: since actors share no state and communicate only through messages, there is no shared memory to corrupt and no locks to deadlock.\n\nThe model is \"universal\" in Hewitt's terms because any concurrent computation can be expressed as a system of actors. It maps directly to physical reality: actors are like biological cells (independent, communicating through signals) or human agents (autonomous, message-passing).\n\n### The Key Idea\n\nThe key idea is that concurrency should be the default, not an afterthought. In the Actor Model, every actor runs concurrently. Sequential processing is a special case (one actor handling one message). The model does not add concurrency to a sequential foundation — it builds sequentiality on top of a concurrent one.\n\nThis inverts the traditional approach, where a single sequential processor is assumed and concurrency is bolted on through threads, locks, and shared memory.\n\n### What Hewitt Got Right\n\n- **Message passing is safer than shared memory.** By forbidding shared state, the Actor Model eliminates entire categories of concurrent programming bugs.\n- **Encapsulation should be mandatory, not optional.** An actor's internal state is inaccessible from outside. There is no \"public field\" or \"global variable\" in the actor world.\n- **Concurrency is fundamental.** The model treats concurrent, independent agents as the base case, not a complication of sequential logic.\n- **Creation is a primitive.** The ability to spawn new actors is built into the model, making dynamic system growth natural.\n- **Behavior change is explicit.** An actor specifies how it will handle the next message, making state transitions clear and deterministic.\n\n### What Hewitt Got Wrong or Left Unfinished\n\n- **No canonical formal semantics.** Hewitt's original formulation was broad and philosophical. Formal semantics (such as those developed by Agha and others) came later and imposed restrictions Hewitt did not originally specify.\n- **Message delivery guarantees.** The original model did not specify whether messages are guaranteed to arrive, in wha","ranking":"safety-first (interaction_risk/limitations), then quote-gated effective_weight","claims":[],"sources":[],"anecdotal_sources":[],"scientific_sources":[],"user_reports":[],"related_articles":[],"question_graph":{"slug":"thinker-carl-hewitt","questions":[],"evidence":[],"edges":[],"counts":{"questions":0,"evidence":0,"edges":0}},"honesty":{"active_claims":0,"retracted_claims":0,"cut_claims":0,"challenges":0,"scrub_events":0,"note":"Retracted/cut claims stay on ledger but are excluded from ask unless ?include_inactive=1"},"counts":{"claims":0,"claims_total":0,"sources":0,"anecdotal":0,"scientific":0,"user_reports":0,"questions":0,"evidence_ingests":0}}