move heuristic into morphism graph module

This commit is contained in:
Michael Sippel 2025-06-11 13:30:30 +02:00
parent b41cef5df3
commit d5ef37a433
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::*;