feat: separate solver logic into dedicated web worker, improve toast notifications
All checks were successful
Deploy to Production / deploy (push) Successful in 21s

This commit is contained in:
2026-02-24 09:56:16 +00:00
parent dc95b07188
commit 8a20531fa0
8 changed files with 263 additions and 75 deletions

View File

@@ -1,10 +1,11 @@
import Cube from "cubejs";
// Initialize the core pruning tables on module load
Cube.initSolver();
import { DeepCube, CORNERS, EDGES } from "../DeepCube.js";
export class KociembaSolver {
static init() {
Cube.initSolver();
}
constructor(cube) {
this.cube = cube.clone();
}