Adapt to changes in Determinize registrations in the core
Commit automata-library@1a4de925 in the core merged all the no-op Determinize overloads into one.
This brings two issues.
First, the edges between boxes report cast issue
Type
automaton::DFA<Universal type, unsigned>
is not castable to type
variant<
automaton::DFA<Universal type, Universal type>,
automaton::DFTA<Universal type, Universal type>,
automaton::DPDA<Universal type, Universal type, Universal type>,
automaton::InputDrivenDPDA<Universal type, Universal type, Universal type>,
automaton::OneTapeDTM<Universal type, Universal type>,
automaton::RealTimeHeightDeterministicDPDA<Universal type, Universal type, Universal type>,
automaton::SinglePopDPDA<Universal type, Universal type, Universal type>,
automaton::UnorderedDFTA<Universal type, Universal type>,
automaton::VisiblyPushdownDPDA<Universal type, Universal type, Universal type>
>
Second, the overload in the algorithm list now reports this and I have no idea how to report the types of the variants.
cc @travnja3