Example #1
0
 private void button5_Click(object sender, EventArgs e)
 {
     M = Node.LRC_CycleWalk;
     x = new Thread(f);
     x.Start();
     groupBox1.Enabled = false;
 }
Example #2
0
            public Params(WalkMethod walkMethod, WalkAction walkAction, WalkParams walkParams, bool sink)
            {
                WalkMethod = walkMethod;
                WalkAction = walkAction;
                WalkParams = walkParams;

                Sink = sink;

                IsPoint   = false;
                IsOverall = false;
                IsTotal   = true;
            }
Example #3
0
            public Params(WalkMethod walkMethod, WalkAction walkAction, WalkParams walkParams, bool sink, ILocator path, IData key)
            {
                WalkMethod = walkMethod;
                WalkAction = walkAction;
                WalkParams = walkParams;

                Sink = sink;

                Path      = path;
                FromKey   = key;
                ToKey     = key;
                IsPoint   = true;
                IsOverall = false;
                IsTotal   = false;
            }
Example #4
0
            public Params(WalkMethod walkMethod, WalkAction walkAction, WalkParams walkParams, bool sink)
            {
                WalkMethod = walkMethod;
                WalkAction = walkAction;
                WalkParams = walkParams;

                Sink = sink;

                IsPoint = false;
                IsOverall = false;
                IsTotal = true;
            }
Example #5
0
            public Params(WalkMethod walkMethod, WalkAction walkAction, WalkParams walkParams, bool sink, Locator path, IData key)
            {
                WalkMethod = walkMethod;
                WalkAction = walkAction;
                WalkParams = walkParams;

                Sink = sink;

                Path = path;
                FromKey = key;
                ToKey = key;
                IsPoint = true;
                IsOverall = false;
                IsTotal = false;
            }