- Updated class names and import statements to align with the new naming convention.

- Adjusted test commands and report references to use FlakeStorm terminology.
- Ensured consistency in configuration and runner references throughout the documentation.
This commit is contained in:
Entropix 2025-12-30 16:13:29 +08:00
parent 0c986e268a
commit 1d45fb2981
10 changed files with 37 additions and 37 deletions

View file

@ -67,7 +67,7 @@ async def _run_single_mutation(self, mutation):
**A:** They serve different purposes:
- **`runner.py`**: High-level API for users - simple `EntropixRunner.run()` interface
- **`runner.py`**: High-level API for users - simple `FlakeStormRunner.run()` interface
- **`orchestrator.py`**: Internal coordination logic - handles the complex flow
This separation allows:
@ -359,7 +359,7 @@ fn levenshtein_distance(s1: &str, s2: &str) -> usize {
}
#[pymodule]
fn entropix_rust(m: &PyModule) -> PyResult<()> {
fn flakestorm_rust(m: &PyModule) -> PyResult<()> {
m.add_function(wrap_pyfunction!(levenshtein_distance, m)?)?;
Ok(())
}
@ -375,7 +375,7 @@ except ImportError:
def levenshtein_distance(s1: str, s2: str) -> int:
if _RUST_AVAILABLE:
return entropix_rust.levenshtein_distance(s1, s2)
return flakestorm_rust.levenshtein_distance(s1, s2)
# Pure Python fallback
...
```