mirror of
https://github.com/flakestorm/flakestorm.git
synced 2026-06-06 16:55:12 +02:00
Refactor Entropix to FlakeStorm
- Rename all instances of Entropix to FlakeStorm - Rename package from entropix to flakestorm - Update all class names (EntropixConfig -> FlakeStormConfig, EntropixRunner -> FlakeStormRunner) - Update Rust module from entropix_rust to flakestorm_rust - Update README: remove cloud comparison, update links to flakestorm.com - Update .gitignore to allow docs files referenced in README - Add origin remote for VS Code compatibility - Fix missing imports and type references - All imports and references updated throughout codebase
This commit is contained in:
parent
7b75fc9530
commit
61652be09b
48 changed files with 586 additions and 425 deletions
|
|
@ -1,4 +1,4 @@
|
|||
//! Entropix Rust Performance Module
|
||||
//! flakestorm Rust Performance Module
|
||||
//!
|
||||
//! This module provides high-performance implementations for:
|
||||
//! - Robustness score calculation
|
||||
|
|
@ -140,7 +140,7 @@ fn string_similarity(s1: &str, s2: &str) -> f64 {
|
|||
|
||||
/// Python module definition
|
||||
#[pymodule]
|
||||
fn entropix_rust(_py: Python, m: &PyModule) -> PyResult<()> {
|
||||
fn flakestorm_rust(_py: Python, m: &PyModule) -> PyResult<()> {
|
||||
m.add_function(wrap_pyfunction!(calculate_robustness_score, m)?)?;
|
||||
m.add_function(wrap_pyfunction!(calculate_weighted_score, m)?)?;
|
||||
m.add_function(wrap_pyfunction!(parallel_process_mutations, m)?)?;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
//! Parallel processing utilities for Entropix
|
||||
//! Parallel processing utilities for flakestorm
|
||||
//!
|
||||
//! This module provides efficient parallel processing for mutation generation
|
||||
//! and agent testing using Rayon.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
//! Scoring algorithms for Entropix
|
||||
//! Scoring algorithms for flakestorm
|
||||
//!
|
||||
//! This module contains optimized scoring algorithms for calculating
|
||||
//! robustness metrics and aggregating test results.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue