hackathon_code4change / test_system.py
RoyAalekh's picture
feat: Complete Court Scheduling System for Code4Change Hackathon
54c8522
raw
history blame
431 Bytes
"""Quick test to verify core system works before refactoring."""
from scheduler.data.param_loader import load_parameters
p = load_parameters()
print("βœ“ Parameters loaded successfully")
print(f"βœ“ Adjournment rate (ADMISSION, RSA): {p.get_adjournment_prob('ADMISSION', 'RSA'):.3f}")
print("βœ“ Stage duration (ADMISSION, median): {:.0f} days".format(p.get_stage_duration('ADMISSION', 'median')))
print("βœ“ Core system works!")