move heuristic into morphism graph module

This commit is contained in:
Michael Sippel 2025-06-11 13:30:30 +02:00
parent b6add2b1a2
commit a4f6b1efb3
Signed by: senvas
GPG key ID: F96CF119C34B64A6
3 changed files with 1 additions and 2 deletions
src

View file

@ -7,8 +7,6 @@ pub mod context;
pub mod constraint_system;
pub mod morphism_graph;
pub mod heuristic;
#[cfg(test)]
mod test;

View file

@ -1,5 +1,6 @@
pub mod morphism_base;
pub mod morphism_graph;
pub mod heuristic;
pub use morphism_base::*;
pub use morphism_graph::*;