using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Tspform { abstract public class Algorithm// the parent of that three algorithm, for expend the other algorithm { //abstract public void Init(); abstract public void ResultRoute(); abstract public double AllRoute(int j); } }