forked from UNN/2026-rff_mp
14 lines
338 B
Python
14 lines
338 B
Python
from .experiment import run_benchmarks
|
|
from .plots import generate_plots
|
|
|
|
|
|
class MazeTestingFacade:
|
|
def run_full_diagnostic(self):
|
|
print("Запуск экспериментов...")
|
|
run_benchmarks()
|
|
|
|
print("\nГенерация графиков...")
|
|
generate_plots()
|
|
|
|
print("\nГотово!")
|