feat(constraint_graph): add visualization functionality to the constraint graph (#4701)

This commit is contained in:
Shanks
2024-05-21 17:28:52 +05:30
committed by GitHub
parent 2e79ee0615
commit 0f53f74d26
9 changed files with 197 additions and 3 deletions

View File

@ -7,6 +7,8 @@ pub mod types;
pub use builder::ConstraintGraphBuilder;
pub use error::{AnalysisTrace, GraphError};
pub use graph::ConstraintGraph;
#[cfg(feature = "viz")]
pub use types::NodeViz;
pub use types::{
CheckingContext, CycleCheck, DomainId, DomainIdentifier, Edge, EdgeId, KeyNode, Memoization,
Node, NodeId, NodeValue, Relation, Strength, ValueNode,