// Warn about any labels that are used in the formula but do not correspond to any label in the LTS.
let mut algorithm: Translation<'_, _, BDDFunction> = Translation::new(fts, &simplified_labels, &equation_system);
let formula = UntypedStateFrmSpec::parse(include_str!("../../../examples/vpg/running_example.mcf")).unwrap();
let vpg = translate_vpg(&manager_ref, &fts, fd.configuration().clone(), &formula.formula).unwrap();
assert!(compute_reachable(&vpg).1.iter().all(|v| v.is_some()), "All vertices should be reachable from the initial vertex");