Rename subtree to subgraph (#265)

Intially, a fold instruction was designed based on idea that its iterable can't expand,
so AIR was considered as a subtree. But after introducing recursive streams in #225, it's
no more a subtree, but a subgraph.
This commit is contained in:
Mike Voronov
2022-05-17 15:53:33 +03:00
committed by GitHub
parent dbd42cdf3d
commit 24f0d66bed
29 changed files with 146 additions and 146 deletions

View File

@ -29,7 +29,7 @@ pub use merger::MergeCtxType;
pub use merger::MergeError;
pub use merger::MergerApResult;
pub use merger::MergerCallResult;
pub use state_automata::SubtreeType;
pub use state_automata::SubgraphType;
pub type TraceHandlerResult<T> = std::result::Result<T, TraceHandlerError>;