private void Stop()
 {
     foreach (LyapunovGenerator Lyap in Lyaps)
     {
         Lyap.Stop();
     }
     progressBar1.Value = 0;
     progressBar2.Value = 0;
     progressBar3.Value = 0;
     label14.Text       = "Estimated Time Left: ";
     label15.Text       = "Estimated Finish Time: ";
     label17.Text       = "Estimated Time Left: ";
     label8.Text        = "Estimated Finish Time: ";
 }
Exemple #2
0
 private void strt_btn_Click(object sender, EventArgs e)
 {
     foreach (Generator Lyap in Lyaps)
     {
         if (Lyap != null)
         {
             Lyap.Stop();
         }
     }
     if (!parseArgs())
     {
         return;
     }
     Generate();
 }