rogermt commited on
Commit
30356d0
·
verified ·
1 Parent(s): ce235a5

v5 refactor: add solvers/__init__.py

Browse files
neurogolf_solver/solvers/__init__.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Solvers package for ARC-AGI NeuroGolf Championship."""
3
+
4
+ from .solver_registry import ANALYTICAL_SOLVERS, solve_task
5
+
6
+ __all__ = ['ANALYTICAL_SOLVERS', 'solve_task']