18 lines
562 B
Python
18 lines
562 B
Python
import sys
|
|
if True:
|
|
sys.path.append(__path__[0])
|
|
|
|
import lib as utils
|
|
from LPath import FILES_ALL, FILES_UNSOLVED, FILES_SOLVED
|
|
from LPath import LPath as path
|
|
from RuneSolver import VigenereSolver, AffineSolver, AutokeySolver, SequenceSolver
|
|
from RuneText import Rune, RuneText
|
|
from RuneText import RUNES, alphabet, load_indices
|
|
|
|
from HeuristicSearch import GuessVigenere, GuessAffine, GuessPattern
|
|
from HeuristicSearch import SearchInterrupt
|
|
from HeuristicLib import Probability
|
|
from InterruptDB import InterruptDB
|
|
|
|
from FailedAttempts import NGramShifter
|