Exemplo n.º 1
0
        public void CreateProcessSimulationTest()
        {
            int min_a = 1;
            int max_a = 100;
            int min_b = 1;
            int max_b = 100;

            ProcessController.CreateProcessSimulation()
        }
Exemplo n.º 2
0
        private void StartButton_Click(object sender, EventArgs e)
        {
            StartButtonClicked?.Invoke();
            List <Process> CopyProcessData = new List <Process>();

            ProcessData.ForEach((u) =>
            {
                CopyProcessData.Add(new Process(u));
            });
            ProcessController.CreateProcessSimulation(runningType == 3, CopyProcessData, 1, (int)CoreNumeric.Value);
        }
Exemplo n.º 3
0
 private void StartButton_Click(object sender, EventArgs e)
 {
     StartButtonClicked?.Invoke();
     ProcessController.CreateProcessSimulation(runningType == 3, ProcessData, 1, (int)coreNumeric.Value);
 }