/// <summary> /// Build an edge from fromState to toState /// </summary> /// <param name="fromState">Start state for the edge</param> /// <param name="toState">End State of the edge</param> public NDAutomataEdge(NDAutomata.NDAutomataState fromState, NDAutomata.NDAutomataState toState) { _fromState = fromState; _toState = toState; }
/// <summary> /// Build a new edge from 2 new NFAutomataState /// </summary> public NDAutomataEdge() { _fromState = new NDAutomata.NDAutomataState(); _toState = new NDAutomata.NDAutomataState(); }