adjust instance finder to refactors
This commit is contained in:
parent
217d5b4a82
commit
daefcad215
1 changed files with 5 additions and 8 deletions
|
@ -1,18 +1,15 @@
|
||||||
import json
|
|
||||||
from site_api import get, api, replay
|
|
||||||
from sat import solve_sat
|
from sat import solve_sat
|
||||||
from database import Game, store, load, commit, conn
|
from database import conn
|
||||||
from download_data import export_game
|
from download_data import export_game
|
||||||
from variants import num_suits, VARIANTS, variant_name
|
from variants import VARIANTS, variant_name
|
||||||
from alive_progress import alive_bar
|
from alive_progress import alive_bar
|
||||||
from compress import decompress_deck, link
|
from compress import decompress_deck, link
|
||||||
import concurrent.futures
|
import concurrent.futures
|
||||||
from threading import Lock
|
from threading import Lock
|
||||||
from time import sleep, perf_counter
|
from time import perf_counter
|
||||||
from greedy_solver import GameState, GreedyStrategy
|
from greedy_solver import GameState, GreedyStrategy
|
||||||
from logger_setup import logger
|
from log_setup.logger_setup import logger
|
||||||
from deck_analyzer import analyze, InfeasibilityReason, InfeasibilityType
|
from deck_analyzer import analyze, InfeasibilityReason
|
||||||
|
|
||||||
|
|
||||||
MAX_PROCESSES=4
|
MAX_PROCESSES=4
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue