ApproxIndexes.Indexes.ExecuteAPG_OptTabuSatNeighborhoodMontecarloStart C# (CSharp) Method

ExecuteAPG_OptTabuSatNeighborhoodMontecarloStart() public static method

public static ExecuteAPG_OptTabuSatNeighborhoodMontecarloStart ( IndexArgumentSetup setup, string nick ) : string
setup IndexArgumentSetup
nick string
return string
        public static string ExecuteAPG_OptTabuSatNeighborhoodMontecarloStart(IndexArgumentSetup setup, string nick)
        {
            var idxname = String.Format ("{0}/Index.APG-OptTabuSatNeighborhoodMontecarloStart", nick);
            return Execute (setup, nick, idxname, (db) => {
                var IDX = new APG_OptTabuSatNeighborhoodMontecarloStart ();
                IDX.Build (db);
                return IDX;
            });
        }