Skip to main content

replay_graph

Kind: Function
Domain: Graph, serialization, and replay
Canonical import: from cadflow import replay_graph

Signature

def replay_graph(graph: 'OperationGraph', *, strict: 'bool' = True) -> 'List[Any]'

Description

Replay an OperationGraph to rebuild the model.

Replay an OperationGraph to rebuild the model.

Executes nodes in topological order. Primitives are created from their parameters; boolean operations consume upstream outputs.

Parameters

NameTypeRequiredDefaultSource description
graph'OperationGraph'yes-The graph to replay.
strict'bool'noTrueNot explicitly described in the source docstring.

Returns

Type: 'List[Any]'

List of leaf-node outputs. These may be solids, faces, wires, edges, or vertices depending on the workflow.

Errors

The source docstring does not declare a narrower exception contract. Invalid types, values, ownership, paths, or backend state may still raise the corresponding public error.

Behavior and constraints

  • The contract below is generated from the current public runtime signature. Check domain notes for ownership and workflow constraints.

Import check

from cadflow import replay_graph

See also