Ejemplo n.º 1
0
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            Act[] arrAct = new Act[11];
            arrAct[0]  = new Act("A", 1, new float[] { 1, 2 }, new string[] { });
            arrAct[1]  = new Act("B", 2, new float[] { 1, 2 }, new string[] { });
            arrAct[2]  = new Act("C", 3, new float[] { 1, 2 }, new string[] { });
            arrAct[3]  = new Act("D", 2, new float[] { 1, 2 }, new string[] { "B" });
            arrAct[4]  = new Act("E", 5, new float[] { 1, 2 }, new string[] { "A" });
            arrAct[5]  = new Act("F", 3, new float[] { 1, 2 }, new string[] { "A" });
            arrAct[6]  = new Act("G", 2, new float[] { 1, 2 }, new string[] { "C" });
            arrAct[7]  = new Act("H", 1, new float[] { 1, 2 }, new string[] { "B", "D", "E", "K" });
            arrAct[8]  = new Act("I", 4, new float[] { 1, 2 }, new string[] { "C", "G" });
            arrAct[9]  = new Act("J", 200, new float[] { 1, 2 }, new string[] { "F", "G", "H" });
            arrAct[10] = new Act("K", 3, new float[] { 1, 2 }, new string[] { "C" });
            ActNet an = new ActNet(arrAct);

            /*Act[] arrAct = new Act[5];
             * arrAct[0] = new Act("A", 1, new float[] { 1, 2 }, new string[] { });
             * arrAct[1] = new Act("B", 2, new float[] { 1, 2 }, new string[] { });
             * arrAct[2] = new Act("C", 3, new float[] { 1, 2 }, new string[] { });
             * arrAct[3] = new Act("D", 2, new float[] { 1, 2 }, new string[] { });
             * arrAct[4] = new Act("E", 5, new float[] { 1, 2 }, new string[] { });
             *
             * ActNet an = new ActNet(arrAct);*/
            an.BuildActNet();
            float t = an.OptimizeTime(new float[] { 100, 200 });

            Application.Run(new MainForm());
        }
Ejemplo n.º 2
0
        public int Compare(object x, object y)
        {
            Act actX = (Act)x, actY = (Act)y;

            if (actX.t != actY.t)
            {
                return(actX.t.CompareTo(actY.t));
            }

            float  reservX, reservY, delta = 10000;
            ActNet an = new ActNet(actNet);

            an.ShiftActTime(actX.mark, delta);
            reservX = dur + delta - an.GetDuration() - (tau - actX.t);
            an      = new ActNet(actNet);
            an.ShiftActTime(actY.mark, delta);
            reservY = dur + delta - an.GetDuration() - (tau - actY.t);
            if (reservX != reservY)
            {
                return(reservX.CompareTo(reservY));
            }

            float resX = 0, resY = 0;

            for (int i = 0; i < actX.arrRes.Length; i++)
            {
                resX += actX.arrRes[i] / an.GetResource(i);
            }
            for (int i = 0; i < actY.arrRes.Length; i++)
            {
                resY += actY.arrRes[i] / an.GetResource(i);
            }
            if (resX != resY)
            {
                return(-resX.CompareTo(resY));
            }
            return(actX.mark.CompareTo(actY.mark));
        }
Ejemplo n.º 3
0
        public ActNet(ActNet an)    // копирование (включая ресурсы, нач. и зав. соб.)
        {
            arrAct = new Act[an.arrAct.Length];
            for (int i = 0; i < arrAct.Length; i++)
            {
                float[] arrResAct = null;
                if (an.arrAct[i].arrRes != null)
                {
                    arrResAct = (float[])an.arrAct[i].arrRes.Clone();
                }
                string[] arrMarkPrevAct = null;
                if (an.arrAct[i].arrMarkPrev != null)
                {
                    arrMarkPrevAct = (string[])an.arrAct[i].arrMarkPrev.Clone();
                }
                arrAct[i] = new Act(an.arrAct[i].mark, an.arrAct[i].dur,
                                    arrResAct, arrMarkPrevAct);
            }
            arrNode = new Node[an.arrNode.Length];
            for (int i = 0; i < arrNode.Length; i++)
            {
                arrNode[i] = new Node(an.arrNode[i].mark);
            }
            for (int i = 0; i < arrAct.Length; i++)
            {
                arrAct[i].Start = GetNodeByMark(an.arrAct[i].Start.mark);
                arrAct[i].End   = GetNodeByMark(an.arrAct[i].End.mark);
            }
            arrRes = null;
            if (an.arrRes != null)
            {
                arrRes = (float[])an.arrRes.Clone();
            }

            nRoot = GetNodeByMark(an.nRoot.mark);
            nEnd  = GetNodeByMark(an.nEnd.mark);
        }
Ejemplo n.º 4
0
 public ActComparerByRes(ActNet actNet, float tau)
 {
     this.actNet = new ActNet(actNet);
     this.tau    = tau;
     dur         = actNet.GetDuration();
 }
Ejemplo n.º 5
0
        Act[] ReadActs()
        {
            ArrayList res = new ArrayList();

            for (int i = 0; i < dgvAct.Rows.Count - 1; i++)
            {
                DataGridViewRow r      = dgvAct.Rows[i];
                float[]         arrRes = new float[(int)nudRes.Value];
                for (int j = 0; j < arrRes.Length; j++)
                {
                    arrRes[j] = (float)(r.Cells[3 + j] as DataGridViewCell).Value;
                }
                string   mark = (string)(r.Cells["Название"] as DataGridViewCell).Value;
                float    dur  = (float)(r.Cells["Длительность"] as DataGridViewCell).Value;
                string   prev = (string)(r.Cells["Предшествующие работы"] as DataGridViewCell).Value;
                string[] arrPrev;
                if (prev != null)
                {
                    arrPrev = prev.Split(new char[] { ' ', ',' });
                }
                else
                {
                    arrPrev = new string[] { }
                };
                res.Add(new Act(mark, dur, arrRes, arrPrev));
            }
            return((Act[])res.ToArray(typeof(Act)));
        }

        float[] ReadRes()
        {
            float[] arrRes = new float[(int)nudRes.Value];
            for (int i = 0; i < dgvRes.Rows.Count; i++)
            {
                arrRes[i] = (float)dgvRes.Rows[i].Cells["Количество"].Value;
            }
            return(arrRes);
        }

        void Calculate()
        {
            try
            {
                Act[] arrAct = ReadActs();
                an = new ActNet(arrAct);
                an.BuildActNet();
                float[] arrRes = ReadRes();
                an.OptimizeTime(arrRes);
            }
            catch { }
        }

        void CalculateOptRes()
        {
            ArrayList listAn = new ArrayList();

            try
            {
                float   Treal, Tdir = float.Parse(tbTime.Text);
                ActNet  anCur  = an;
                float[] arrRes = ReadRes();
                Treal = an.OptimizeTime(arrRes);
                while (Treal <= Tdir)
                {
                    Treal = float.MaxValue;
                    listAn.Add(anCur);
                    float[]   arrCrit  = anCur.GetCriterions();
                    ArrayList listCrit = new ArrayList(arrCrit);
                    listCrit.Sort();
                    listCrit.Reverse();
                    foreach (float crit in listCrit)
                    {
                        int i;
                        for (i = 0; i < arrCrit.Length; i++)
                        {
                            if (crit == arrCrit[i])
                            {
                                break;
                            }
                        }
                        float step = (float)dgvRes.Rows[i].Cells["Шаг"].Value;
                        anCur      = new ActNet(anCur);
                        arrRes[i] -= step;
                        try
                        {
                            Treal = anCur.OptimizeTime(arrRes);
                            if (Treal > Tdir)
                            {
                                throw new Exception();
                            }
                            break;
                        }
                        catch
                        {
                            Treal      = float.MaxValue;
                            arrRes[i] += step;
                        }
                    }
                }
            }
            catch { }
            ActNet[] arrAn = (ActNet[])listAn.ToArray(typeof(ActNet));
            lbResult.Items.Clear();
            lbResult.Items.AddRange(arrAn);
        }

        void dgv_CellValueChanged(object sender, DataGridViewCellEventArgs e)
        {
            Calculate();
            if (tc.SelectedTab == tc.TabPages["tpOptRes"])
            {
                CalculateOptRes();
            }
            SetBitmaps();
        }

        void tc_TabIndexChanged(object sender, EventArgs e)
        {
            if (tc.SelectedTab == tc.TabPages["tpOptRes"])
            {
                CalculateOptRes();
            }
            SetBitmaps();
        }

        void pictureBox_MouseMove(object sender, MouseEventArgs e)
        {
            if (e.Button == MouseButtons.None)
            {
                isBmpSizing = false;
                return;
            }
            if (isBmpSizing == false)
            {
                prevLocation = e.Location;
                isBmpSizing  = true;
                return;
            }
            int xDelta = e.Location.X - prevLocation.X;
            int yDelta = e.Location.Y - prevLocation.Y;

            prevLocation = e.Location;

            if (e.Button == MouseButtons.Left)
            {
                xDist      += xDelta;
                yAmplitude += yDelta;
                if (xDist > 100)
                {
                    xDist = 100;
                }
                if (xDist < 10)
                {
                    xDist = 10;
                }
                if (yAmplitude > 400)
                {
                    yAmplitude = 400;
                }
                if (yAmplitude < 10)
                {
                    yAmplitude = 10;
                }
            }
            else if (e.Button == MouseButtons.Right)
            {
                mult     += xDelta * 0.02f;
                fontSize += yDelta;
                if (mult < 0.5)
                {
                    mult = 0.5f;
                }
                if (mult > 5)
                {
                    mult = 5;
                }
                if (fontSize < 4)
                {
                    fontSize = 4;
                }
                if (fontSize > 25)
                {
                    fontSize = 25;
                }
                nodeDiam = 20 * fontSize / 9;
            }
            SetBitmaps();
        }

        void pbMain_SizeChanged(object sender, EventArgs e)
        {
            SetBitmaps();
        }

        void SetBitmaps()
        {
            try
            {
                if (tc.SelectedTab == tc.TabPages["tpData"])
                {
                    pbMain.Image = an.GetGraph(yAmplitude, xDist,
                                               mult, nodeDiam, fontSize);
                }
                else if (tc.SelectedTab == tc.TabPages["tpOptTime"])
                {
                    pbGraphTime.Image = an.GetGraph(yAmplitude, xDist,
                                                    mult, nodeDiam, fontSize);
                    pbMain.Image = an.GetHuntRes(pbMain.Width, pbMain.Height);
                }
                else if (tc.SelectedTab == tc.TabPages["tpOptRes"])
                {
                    lbResult_SelectedValueChanged(null, null);
                }
            }
            catch { }
        }

        void lbResult_SelectedValueChanged(object sender, EventArgs e)
        {
            try
            {
                ActNet anSel = (ActNet)lbResult.SelectedItem;
                pbMain.Image = anSel.GetHuntRes(pbMain.Width, pbMain.Height);
            }
            catch { }
        }

        void tbTime_TextChanged(object sender, EventArgs e)
        {
            CalculateOptRes();
        }

        void saveToolStripMenuItem_Click(object sender, EventArgs e)
        {
            try
            {
                saveFileDialog1.Filter = "Файлы отчетов|*.htm";
                if (saveFileDialog1.ShowDialog() != DialogResult.OK)
                {
                    return;
                }
                FileStream   fs = new FileStream(saveFileDialog1.FileName, FileMode.Create);
                StreamWriter sw = new StreamWriter(fs, Encoding.Unicode);
                string       s  = "<P>Задача сетевого планирования проекта с учетом " +
                                  "нескладируемых ресурсов при минимизации максимальных " +
                                  "значений потребления ресурсов и ограничениях на сроки " +
                                  "выполнения проекта и используемые ресурсы.</P>";
                s += "<P><IMG SRC = \"graph.bmp\"></IMG></P>";
                s += "<P>Количество ресурсов: " + nudRes.Value.ToString() + "</P>";
                s += "<P>Минимальное время завершения проекта: " +
                     an.OptimizeTime(ReadRes()).ToString() + "</P>";
                s += "<P><IMG SRC = \"huntrestime.bmp\"</IMG></P>";
                for (int i = 0; i < lbResult.Items.Count; i++)
                {
                    ActNet anCur = (ActNet)lbResult.Items[i];
                    s += "<P>" + anCur.ToString() + "</P>";
                    s += "<P><IMG SRC = \"iter" + i.ToString() + ".bmp\"></IMG></P>";
                }
                sw.Write(s);
                sw.Close();

                Bitmap bmp;
                bmp = an.GetGraph(yAmplitude, xDist, mult, nodeDiam, fontSize);
                bmp.Save("graph.bmp");
                bmp = an.GetHuntRes(600, 600);
                bmp.Save("huntrestime.bmp");
                for (int i = 0; i < lbResult.Items.Count; i++)
                {
                    ActNet anCur = (ActNet)lbResult.Items[i];
                    anCur.GetHuntRes(600, 600).Save("iter" + i.ToString() + ".bmp");
                }
            }
            catch { }
        }

        void exitToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Close();
        }

        void aboutToolStripMenuItem_Click(object sender, EventArgs e)
        {
            MessageBox.Show("Автор: Кондауров А. С., группа АС-05-1");
        }
    }
Ejemplo n.º 6
0
        Act[] ReadActs()
        {
            List <Act> listAct = new List <Act>();

            for (int i = 0; i < dgvAct.Rows.Count - 1; i++)
            {
                DataGridViewRow r = dgvAct.Rows[i];
                string          mark = (string)(r.Cells["Название"] as DataGridViewCell).Value;
                float           durMin = 0, durMax = 0, costMin = 0, costMax = 0;
                object          val = (r.Cells["МинДлительность"] as DataGridViewCell).Value;
                if (val != null)
                {
                    durMin = (float)val;
                }
                val = (r.Cells["МаксДлительность"] as DataGridViewCell).Value;
                if (val != null)
                {
                    durMax = (float)val;
                }
                val = (r.Cells["МинСтоимость"] as DataGridViewCell).Value;
                if (val != null)
                {
                    costMin = (float)val;
                }
                val = (r.Cells["МаксСтоимость"] as DataGridViewCell).Value;
                if (val != null)
                {
                    costMax = (float)val;
                }
                string   prev = (string)(r.Cells["ПредРаботы"] as DataGridViewCell).Value;
                string[] arrPrev;
                if (prev != null)
                {
                    arrPrev = prev.Split(new char[] { ' ', ',' });
                }
                else
                {
                    arrPrev = new string[] { }
                };
                listAct.Add(new Act(mark, durMin, durMax, costMin, costMax, arrPrev));
            }
            return(listAct.ToArray());
        }

        void Calculate()
        {
            try
            {
                lbResult.Items.Clear();
                listArrState = new List <IterationState[]>();
                Act[] arrAct = ReadActs(), arrActAll = arrAct;
                an = new ActNet(arrAct);
                an.BuildActNet();
                an.SetMaxActCost();
                string strAn = an.ToString(), strAnOld = "";
                //while (strAn != strAnOld)
                {
                    an.CalcStaticTimeParams();
                    lbResult.Items.Add(an);
                    arrAct = an.critPath;
                    int      n = arrAct.Length + 1, m = arrAct.Length + n; // кол. ур. и пер.
                    ExMatrix mP = new ExMatrix(n, m);
                    ExMatrix mB = new ExMatrix(n, 1);
                    ExMatrix mC = new ExMatrix(1, m);
                    double   cCoeff = 0, sumDurMin = 0, sumDurMinB = 0;
                    for (int i = 0; i < arrAct.Length; i++)
                    {
                        mP.Elements[i, i] = 1;
                        mP.Elements[i, i + arrAct.Length] = 1;
                        mB.Elements[i, 0]             = arrAct[i].durMax - arrAct[i].durMin;
                        mP.Elements[arrAct.Length, i] = 1; // строка для Sum(dur)
                        mC.Elements[0, i]             = -arrAct[i].b;
                        sumDurMin  += arrAct[i].durMin;
                        sumDurMinB += arrAct[i].durMin * arrAct[i].b;
                        cCoeff     += arrAct[i].a;
                    }
                    mB.Elements[arrAct.Length, 0]     = float.Parse(tbTime.Text) - sumDurMin;
                    mP.Elements[arrAct.Length, m - 1] = 1;
                    cCoeff -= sumDurMinB;
                    ExMatrix[] arrMP = new ExMatrix[m];
                    for (int i = 0; i < arrMP.Length; i++)
                    {
                        arrMP[i] = new ExMatrix(n, 1);
                    }
                    for (int i = 0; i < n; i++)
                    {
                        for (int j = 0; j < m; j++)
                        {
                            arrMP[j].Elements[i, 0] = mP.Elements[i, j];
                        }
                    }
                    for (int i = 0; i < mC.N; i++)
                    {
                        mC.Elements[0, i] *= -1;
                    }
                    MsMethod method   = new MsMethod(arrMP, mB, mC, 0);
                    int[]    arrIndex = new int[n];
                    for (int i = 0; i < n; i++)
                    {
                        arrIndex[i] = arrAct.Length + i;
                    }
                    method.SetBasis(arrIndex);
                    while (method.DoIteration())
                    {
                        ;
                    }
                    listArrState.Add((IterationState[])method.states.ToArray(typeof(IterationState)));
                    IterationState stateLast = (IterationState)method.states[method.states.Count - 1];
                    for (int i = 0; i < arrAct.Length; i++)
                    {
                        arrAct[i].dur = (float)stateLast.GetVarValue(i) + arrAct[i].durMin;
                    }
                    an.CalcStaticTimeParams();
                    foreach (Act a in arrActAll)
                    {
                        if (a.TReserv <= a.durMax - a.dur)
                        {
                            a.dur += a.TReserv;
                            an.ShiftActTime(a.mark, 0);
                            an.CalcStaticTimeParams();
                        }
                        else
                        {
                            a.dur = a.durMax;
                            an.ShiftActTime(a.mark, 0);
                            an.CalcStaticTimeParams();
                        }
                    }
                    strAnOld = strAn;
                    strAn    = an.ToString();
                    an       = new ActNet(an, true);
                    lbResult.Items.Add(an);
                }
            }
            catch { }
        }

        void CalculateOptRes()
        {
            ArrayList listAn = new ArrayList();

            try
            {
                /*float Treal, Tdir = float.Parse(tbTime.Text);
                 * ActNet anCur = an;
                 * float[] arrRes = ReadRes();
                 * Treal = an.OptimizeTime(arrRes);
                 * while (Treal <= Tdir)
                 * {
                 *  Treal = float.MaxValue;
                 *  listAn.Add(anCur);
                 *  float[] arrCrit = anCur.GetCriterions();
                 *  ArrayList listCrit = new ArrayList(arrCrit);
                 *  listCrit.Sort();
                 *  listCrit.Reverse();
                 *  foreach (float crit in listCrit)
                 *  {
                 *      int i;
                 *      for (i = 0; i < arrCrit.Length; i++)
                 *          if (crit == arrCrit[i])
                 *              break;
                 *      float step = (float)dgvRes.Rows[i].Cells["Шаг"].Value;
                 *      anCur = new ActNet(anCur);
                 *      arrRes[i] -= step;
                 *      try
                 *      {
                 *          Treal = anCur.OptimizeTime(arrRes);
                 *          if (Treal > Tdir)
                 *              throw new Exception();
                 *          break;
                 *      }
                 *      catch
                 *      {
                 *          Treal = float.MaxValue;
                 *          arrRes[i] += step;
                 *      }
                 *  }
                 * }*/
            }
            catch { }
            //ActNet[] arrAn = (ActNet[])listAn.ToArray(typeof(ActNet));
            //lbResult.Items.Clear();
            //lbResult.Items.AddRange(arrAn);
        }

        void dgv_CellValueChanged(object sender, DataGridViewCellEventArgs e)
        {
            Calculate();
            if (tc.SelectedTab == tc.TabPages["tpOptRes"])
            {
                CalculateOptRes();
            }
            SetBitmaps();
        }

        void tc_TabIndexChanged(object sender, EventArgs e)
        {
            if (tc.SelectedTab == tc.TabPages["tpOptRes"])
            {
                CalculateOptRes();
            }
            SetBitmaps();
        }

        void pictureBox_MouseMove(object sender, MouseEventArgs e)
        {
            if (e.Button == MouseButtons.None)
            {
                isBmpSizing = false;
                return;
            }
            if (isBmpSizing == false)
            {
                prevLocation = e.Location;
                isBmpSizing  = true;
                return;
            }
            int xDelta = e.Location.X - prevLocation.X;
            int yDelta = e.Location.Y - prevLocation.Y;

            prevLocation = e.Location;

            if (e.Button == MouseButtons.Left)
            {
                xDist      += xDelta;
                yAmplitude += yDelta;
                if (xDist > 100)
                {
                    xDist = 100;
                }
                if (xDist < 10)
                {
                    xDist = 10;
                }
                if (yAmplitude > 400)
                {
                    yAmplitude = 400;
                }
                if (yAmplitude < 10)
                {
                    yAmplitude = 10;
                }
            }
            else if (e.Button == MouseButtons.Right)
            {
                mult     += xDelta * 0.02f;
                fontSize += yDelta;
                if (mult < 0.5)
                {
                    mult = 0.5f;
                }
                if (mult > 5)
                {
                    mult = 5;
                }
                if (fontSize < 4)
                {
                    fontSize = 4;
                }
                if (fontSize > 25)
                {
                    fontSize = 25;
                }
                nodeDiam = 20 * fontSize / 9;
            }
            SetBitmaps();
        }

        void pbMain_SizeChanged(object sender, EventArgs e)
        {
            SetBitmaps();
        }

        void SetBitmaps()
        {
            try
            {
                if (tc.SelectedTab == tc.TabPages["tpData"])
                {
                    pbMain.Image = an.GetGraph(yAmplitude, xDist,
                                               mult, nodeDiam, fontSize);
                }
                else if (tc.SelectedTab == tc.TabPages["tpOptRes"])
                {
                    lbResult_SelectedValueChanged(null, null);
                }
            }
            catch { }
        }

        void lbResult_SelectedValueChanged(object sender, EventArgs e)
        {
            try
            {
                ActNet anSel = (ActNet)lbResult.SelectedItem;
                anSel.OptimizeTime(new float[] { });
                pbMain.Image = anSel.GetHuntDiagram(pbMain.Width, pbMain.Height);
                lbIter.Items.Clear();
                foreach (IterationState s in listArrState[lbResult.SelectedIndex - 1])
                {
                    lbIter.Items.Add(string.Format("F = {0}", s.GetFuncValue()));
                }
            }
            catch { }
        }

        void lbIter_SelectedValueChanged(object sender, EventArgs e)
        {
            try
            {
                wb.DocumentText =
                    listArrState[lbResult.SelectedIndex - 1][lbIter.SelectedIndex].GetSimplexTablePart();
            }
            catch { }
        }

        void tbTime_TextChanged(object sender, EventArgs e)
        {
            Calculate();
        }

        void saveToolStripMenuItem_Click(object sender, EventArgs e)
        {
            try
            {
                /*saveFileDialog1.Filter = "Файлы отчетов|*.htm";
                 * if (saveFileDialog1.ShowDialog() != DialogResult.OK)
                 *  return;
                 * FileStream fs = new FileStream(saveFileDialog1.FileName, FileMode.Create);
                 * StreamWriter sw = new StreamWriter(fs, Encoding.Unicode);
                 * string s = "<P>Задача сетевого планирования проекта с учетом " +
                 *  "нескладируемых ресурсов при минимизации максимальных " +
                 *  "значений потребления ресурсов и ограничениях на сроки " +
                 *  "выполнения проекта и используемые ресурсы.</P>";
                 * s += "<P><IMG SRC = \"graph.bmp\"></IMG></P>";
                 * s += "<P>Количество ресурсов: " + nudRes.Value.ToString() + "</P>";
                 * s += "<P>Минимальное время завершения проекта: " +
                 *  an.OptimizeTime(ReadRes()).ToString() + "</P>";
                 * s += "<P><IMG SRC = \"huntrestime.bmp\"</IMG></P>";
                 * for (int i = 0; i < lbResult.Items.Count; i++)
                 * {
                 *  ActNet anCur = (ActNet)lbResult.Items[i];
                 *  s += "<P>" + anCur.ToString() + "</P>";
                 *  s += "<P><IMG SRC = \"iter" + i.ToString() + ".bmp\"></IMG></P>";
                 * }
                 * sw.Write(s);
                 * sw.Close();
                 *
                 * Bitmap bmp;
                 * bmp = an.GetGraph(yAmplitude, xDist, mult, nodeDiam, fontSize);
                 * bmp.Save("graph.bmp");
                 * bmp = an.GetHuntRes(600, 600);
                 * bmp.Save("huntrestime.bmp");
                 * for (int i = 0; i < lbResult.Items.Count; i++)
                 * {
                 *  ActNet anCur = (ActNet)lbResult.Items[i];
                 *  anCur.GetHuntRes(600, 600).Save("iter" + i.ToString() + ".bmp");
                 * }*/
            }
            catch { }
        }

        void exitToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Close();
        }

        void aboutToolStripMenuItem_Click(object sender, EventArgs e)
        {
            MessageBox.Show("Автор: Васильев Д., группа АС-05-1");
        }

        void exampleToolStripMenuItem_Click(object sender, EventArgs e)
        {
            tbTime.Text = "10";
            dgvAct.Rows.Clear();
            dgvAct.Rows.Add(new object[] { "a", null, 2.0f, 5.0f, 1.0f, 6.0f });
            dgvAct.Rows.Add(new object[] { "b", null, 3.0f, 5.0f, 2.0f, 7.0f });
            dgvAct.Rows.Add(new object[] { "c", "a", 3.0f, 6.0f, 2.0f, 7.0f });
            dgvAct.Rows.Add(new object[] { "d", "b", 2.0f, 6.0f, 3.0f, 5.0f });
            dgvAct.Rows.Add(new object[] { "e", "b", 2.0f, 4.0f, 1.0f, 5.0f });
            dgvAct.Rows.Add(new object[] { "f", "d", 1.0f, 5.0f, 1.0f, 6.0f });


            Calculate();
            SetBitmaps();
        }
    }