pot-o-mining 0.4.0

Mining coordination and neural-path logic for PoT-O
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! PoT-O mining: challenge generation, MML path validation, neural path matching, and consensus.

pub mod challenge;
pub mod mml_path;
pub mod neural_path;
pub mod pot_o;

pub use challenge::{Challenge, ChallengeGenerator};
pub use mml_path::MMLPathValidator;
pub use neural_path::NeuralPathValidator;
pub use pot_o::{PotOConsensus, PotOProof, ProofPayload};