quantized-pathfinding 0.1.0

Quantization before pathfinding
Documentation

Quantized-pathfinding

Motivation

I had a picking plugin, which is getting bloated. So i decided to separate the algorithmic part.

Currently working algorithm(s)

None! I need to de-mess(yuk!) my code(which seems working) before publishing :p

quantized_astar will be done in a week(will be done before 05-31-2025).

How does this work

This preprocesses the input before the target algorithm(pathfinding) and roughly recovers the output.

flowchart LR
    subgraph quantized-pathfinding
        direction LR
        quantizer --> algorithm
        algorithm --> dequantizer
    end
    id1[/input/] --> quantized-pathfinding
    quantized-pathfinding --> id2[/output/]

Why shoud i use this?

Indeed(to just use algorithm), you don't need to use this. You can, for example, implement float-like type to directly work with pathfinding](https://docs.rs/pathfinding/latest/pathfinding/).

QnA

What'd be different from theory?

It's finite. Use the boundry instead of infinity in from-book procedures.

How to use them?

You'd probably mix with other functionalities or algorithms.

Any unobvious catch?

The input type seems very generous but it may need more traits or method as you need within the explorative body of the algorithm.