Research Preview v0.3 Reference Path: Simulation-Backed Physical Backends: Research Targets Patent: Provisional 63/973,680
Experimental language framework

SymLan: substrate-native symbolic readout, stated conservatively.

A research-preview specification for registering, encoding, and replay-validating symbolic vocabularies from attractor-system simulations. The programmer declares the constraints. The run resolves the vocabulary.

Research Preview v0.3 - Simulation-Backed Reference Path
Physical oscillator substrates remain active research targets, not proven systems. This site is being updated to match the conservative framing in the latest Research Preview.
For the most current conservative technical framing, see the SymLan Research Preview v0.3.

The Core Idea

SymLan is an experimental research language for a kind of computation that conventional programming languages do not describe cleanly: programs where some important values cannot be known from source text alone, because they depend on a run of a dynamical system.

In conventional software, the programmer normally writes the symbols and the machine manipulates them. In SymLan, the programmer describes a substrate model, run conditions, coupling constraints, and a readout method. The vocabulary produced by that run is not available at parse time. It is pending until the run completes and a validation procedure accepts it.

This is the core idea of SymLan. The language does not ask the reader to believe that any physical substrate already solves the problem. Instead, it makes the unresolved state explicit. A vocabulary is not treated as real simply because the source file names it. It becomes usable only after resolution, measurement, and validation.

// Conventional

The programmer writes values. The machine manipulates values already present in the source, state, or input stream.

// SymLan

The programmer declares a model, run conditions, readout method, and validation thresholds. The vocabulary becomes usable only after resolution succeeds.

What This Preview Does Not Claim

This preview does not claim that physical hardware currently runs SymLan, that SymLan replaces existing programming languages or transformer models, or that symbolic grounding is solved.

The narrower claim is that SymLan provides a disciplined language and validation framework for exploring whether stable attractor behavior can be registered, encoded, and replay-tested as a symbolic vocabulary under explicit constraints.

Hello World, Reframed

The smallest useful SymLan program declares a reference simulation, registers a pending vocabulary, runs the simulation, resolves the vocabulary, and sends a token only if validation succeeds.

substrate H: hopfield_sim {
  N: 1024;
  M: 54;
  alpha: 0.052734;
  W: learn(rule: projection, patterns: 54, seed: "hello");
}

vocab V = register(
  H,
  threshold: auto,
  features: PEFP(k: 9),
  method: PiAPlus,
  min_basins: 54,
  min_entropy: 5.0bits,
  max_collisions: 0
)

run discovery for 10000steps

after resolve V {
  replay V { trials: 1000; require: fidelity >= 0.90; }
  send V.top(1) -> out
}

V.top(1) is not written by the programmer as a fixed symbol. It is discovered during vocabulary resolution and only becomes usable after validation succeeds.

Claims Ladder

ClaimStatus
SymLan expresses declared, pending, and resolved symbolic values.Demonstrated
SymLan describes attractor-backed vocabulary registration and delayed vocabulary use.Demonstrated
Reference simulations can generate candidate basins and attach compact identifiers.Simulated
Readout operators can be evaluated by collision, entropy, replay, and provenance criteria.Simulated
Physical oscillator substrates can reproduce the reference simulation behavior.Hypothesized
A Tower-style registry can coordinate symbolic vocabularies across labs, agents, or models.Roadmap

Physical Backends

Future experimental physical backends, including chemical oscillator arrays such as Belousov-Zhabotinsky systems, vanadium dioxide devices, photonic systems, and others, remain active research targets. They are not yet validated against the reference simulation path.

Intellectual Property

SymLan is associated with U.S. Provisional Patent Application No. 63/973,680, filed February 2026 by James Allen Clow and Melissa Ellen Clow. Selected reference materials may be released publicly while preserving appropriate patent, trademark, registry, and commercial licensing options.