feat: finish legacy project and move it as packaged python project

This commit is contained in:
2026-06-16 20:44:57 +08:00
parent 480e11dbf4
commit a27c5505df
11 changed files with 169 additions and 36 deletions
@@ -0,0 +1,17 @@
from typing import Iterator
from .common import Resolver
from ..dataset import DatasetCollection
from ..common import Circuit
from ..query import Request, Response
class AStarResolver(Resolver):
"""
A resolver that uses A* algorithm to find the best matching circuit.
"""
def __init__(self, dataset: DatasetCollection):
pass
def resolve(self, request: Request) -> Iterator[Circuit]:
pass