[][src]Crate graph_solver

Graph Solver

An undirected graph constraint solver for node and edge colors.

Brought to you by the AdvancedResearch community!

  • If you are looking for a generic solver that does not remove facts, see monotonic_solver
  • If you are looking for a generic solver that can remove facts, see linear_solver
  • If you are looking for a brute-force automated theorem prover for classical and path semantical logic, see pocket_prover

Motivation

Graph solving is used to find visual representations of various algebras, such as Adinkra diagrams, but where the rules for generating the graphs efficiently is unknown.

adinkra

Example: Cube

To construct a cube using a graph solver requires specifying how nodes connect to other nodes. The information you give the solver is which colors these connections have, but without telling which nodes in the graph should be connected.

cube

/*
=== CUBE EXAMPLE ===

Run with GraphViz (https://graphviz.org/):

    cargo run --example cube | dot -Tpng > test.png

*/

use graph_solver::*;

// Notice that edges starts with `2`.
// This is because `0` is empty and `1` is no-edge.
const EDGE: Color = 2;

fn main() {
    let mut g = Graph::new();

    // Create a node pattern with 3 edges.
    let a = Node {
        color: 0,
        self_connected: false,
        edges: vec![Constraint {edge: EDGE, node: 0}; 3]
    };

    // Add 8 vertices.
    for _ in 0..8 {g.push(a.clone())}
    g.no_triangles = true;

    let solve_settings = SolveSettings::new();
    if let Some(solution) = g.solve(solve_settings) {
        println!("{}", solution.puzzle.graphviz(
            "sfdp",
            &["black"],
            &["black"]
        ));
    } else {
        eprintln!("<no solution>");
    }
}

Introduction to Graph Constraint Solving

Each node has a color and a list of edge constraints. The edge constraint stores an edge color and a target color for the adjacent node.

This technique creates a powerful language to describe graphs compactly. For example, all nodes that are locally similar, can use a common description.

Any graphs can be determined using sufficient local information about the nodes and edges. To do this, one can assign each node and edge a unique number.

Therefore, to describe a graph in more detail, one can simply add more colors!

Design

Uses the quickbacktrack library for constraint solving.

This allows starting with a partially solved graph, override solving strategies, debug, or comparing the solution vs the original.

  • Node and edge colors are represents as u64
  • A node color can be any value
  • Edge colors usually start with 2
  • An edge color 0 is means no choice (neither empty or colored).
  • An edge color 1 is means empty

Structs

BackTrackSolver

Solvees puzzles using back tracking.

Constraint

Stores edge constraint.

Graph

Stores information about graph.

MultiBackTrackSolver

Solves puzzle using multiple strategies at the same time. Each strategy is evaluated one step by turn until a solution is found.

Node

Stores a description of a node.

Solution

Contains solution.

SolveSettings

Stores settings for solver.

Constants

DISCONNECTED_EDGE

Edges with value 1 are treated as diconnected.

EMPTY_EDGE

Edges with value 0 are treated as empty.

Traits

Puzzle

Implemented by puzzles.

Functions

combine

Combines multiple priority lists together.

Type Definitions

Color

The type of color.