Microsoft.Automata.Rex.RexEngine.DeserializeDAG C# (CSharp) 메소드

DeserializeDAG() 공개 메소드

Recreate an automaton from a string that has been produced with SerializeDAG.
public DeserializeDAG ( string dag ) : Automaton
dag string string encoding of a deterministic and loopfree automaton with probabilities
리턴 Automaton
        public Automaton<BDD> DeserializeDAG(string dag)
        {
            return solver.DeserializeDAG(dag);
        }