quantrs2-tytan 0.1.3

High-level quantum annealing interface inspired by Tytan for the QuantRS2 framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Auto-generated module
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)

use scirs2_core::ndarray::{Array1, Array2};

use super::types::StructurePattern;

pub trait StructureDetector {
    fn detect_structure(&self, qubo: &Array2<f64>) -> Vec<StructurePattern>;
    fn confidence_score(&self, pattern: &StructurePattern) -> f64;
    fn detector_name(&self) -> &str;
}