Files
pluma/00_unanchay/pluma/pluma-graph/README.md
T
sergio 30467600bc feat: pluma standalone — autoría multilienzo (haz de cuerpos) + notebook reactivo (front-door, git-dep al monorepo)
Front-door limpio: solo crates del dominio; Llimphi y lo fundacional por
git-dep del monorepo gioser.git. cargo check pasa (40 crates, 0 errores).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-04 12:18:01 +00:00

541 B

pluma-graph

Stable-identity atom DAG for pluma.

Directed graph model over atoms: nodes = atoms, edges = relationships (reference, derivation, translation, ...). Cycles detected but not forbidden (translations may cite the original that cites them). Persistence delegated to pluma-store.

API

use pluma_graph::{Grafo, Arista};

let mut g = Grafo::new();
g.conectar(a, b, Arista::Referencia);

Deps