1
0

feat: still update basic concepts

This commit is contained in:
2026-06-15 13:47:31 +08:00
parent 0812e065b5
commit 7721672b8e
5 changed files with 345 additions and 151 deletions

View File

@@ -1,13 +1,13 @@
from typing import Iterator
from .common import Resolver, ResolverRequest, ResolverResult, ResultPriority
from ..dataset import DataSet
from ..dataset import DatasetCollection
class AStarResolver(Resolver):
"""
A resolver that uses A* algorithm to find the best matching circuit.
"""
def __init__(self, dataset: DataSet):
def __init__(self, dataset: DatasetCollection):
pass