public MultipleInputOutput(MultipleOutputMinimizationSolver ms)
        {
            InitializeComponent();
            this.noofvarLabel.Text = "Number of variables: " + ms.variables.ToString();
            for (int i = 0; i < ms.function1.Count; i++)
            {
                func1Label.Text += " " + ms.function1[i].ToString() + ",";
            }
            func1Label.Text  = func1Label.Text.Substring(0, func1Label.Text.Length - 1);
            func1Label.Text += ")";

            for (int i = 0; i < ms.function2.Count; i++)
            {
                func2Label.Text += " " + ms.function2[i].ToString() + ",";
            }
            func2Label.Text  = func2Label.Text.Substring(0, func2Label.Text.Length - 1);
            func2Label.Text += ")";

            ansLabel.Text        = ms.dis;
            ansLabel.AutoSize    = true;
            ansLabel.TextAlign   = ContentAlignment.MiddleCenter;
            ansLabel.Dock        = DockStyle.None;
            ansLabel.Location    = new Point(ansLabel.Location.X, ansLabel.Location.Y - 15);
            ansLabel.BorderStyle = BorderStyle.FixedSingle;
        }
示例#2
0
        static void Main()
        {
            if (Environment.OSVersion.Version.Major == 6)
            {
                SetProcessDPIAware();
            }

            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            List <int> mt = new List <int> {
                2, 3, 4, 5, 7, 12, 13, 15
            };
            List <int> dc = new List <int> {
                4, 6, 7, 9, 11, 12, 14, 15
            };
            MultipleOutputMinimizationSolver q = new MultipleOutputMinimizationSolver(4, mt, dc);

            q.solve();
            q.PRNMINOUTPUT();
            Application.Run(new Main());
        }
        private void minimizeButton_Click(object sender, EventArgs e)
        {
            #region
            //Initialise the lists
            function1 = new List <int>();
            function2 = new List <int>();

            //Check if both minterms Textbox are empty
            if (function1TB.Text.Replace(" ", String.Empty) == "")
            {
                MessageBox.Show("Please enter atleast one minterm of Function 1", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return;
            }
            if (function2TB.Text.Replace(" ", String.Empty) == "")
            {
                MessageBox.Show("Please enter atleast one minterm of Function 2", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return;
            }

            //Add minterms to function 1 list
            try
            {
                string[] function = csvToArray(function1TB.Text.Replace(" ", String.Empty) + ",");
                for (int i = 0; i < function.Length; i++)
                {
                    string temp = function[i].Trim();
                    Console.WriteLine(temp);
                    this.function1.Add(int.Parse(temp));
                    //Check if minterms are in the correct range
                    if (int.Parse(temp) < 0 || int.Parse(temp) >= Math.Pow(2, this.variables))
                    {
                        MessageBox.Show("Entered Minterms of Function 1 should be between 0 and " + (Math.Pow(2, this.variables) - 1).ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                        return;
                    }
                }
            }
            catch
            {
                //To catch any random error
                MessageBox.Show("Enter the Minterms of Function 1 properly", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return;
            }

            //Check for duplicate minterms of function 1
            var total = function1.GroupBy(_ => _).Where(_ => _.Count() > 1).Sum(_ => _.Count());
            Console.WriteLine(total);
            if (total != 0)
            {
                MessageBox.Show("All minterms of Function 1 should be unique", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return;
            }

            //Add minterms to function2 list
            try
            {
                string[] function = csvToArray(function2TB.Text.Replace(" ", String.Empty) + ",");
                for (int i = 0; i < function.Length; i++)
                {
                    string temp = function[i].Trim();
                    this.function2.Add(int.Parse(temp));
                    //Check if function2 minterms are in the correct range
                    if (int.Parse(temp) < 0 || int.Parse(temp) >= Math.Pow(2, this.variables))
                    {
                        MessageBox.Show("Entered Minterms of Function 2 should be between 0 and " + (Math.Pow(2, this.variables) - 1).ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                        return;
                    }
                }
            }
            catch
            {
                //To catch any random error
                if (function2TB.Text.Replace(" ", String.Empty) != "")
                {
                    MessageBox.Show("Enter the minterms of Fucntion 2 properly", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    return;
                }
            }
            //Check for duplicate minterms of function 2
            total = function2.GroupBy(_ => _).Where(_ => _.Count() > 1).Sum(_ => _.Count());
            Console.WriteLine(total);
            if (total != 0)
            {
                MessageBox.Show("All minterms of Function 2 should be unique", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return;
            }
            #endregion

            Console.Write("\nFunction 1:");
            for (int i = 0; i < function1.Count; i++)
            {
                Console.Write(function1[i] + " ");
            }
            Console.WriteLine("\nFunction 2:");
            for (int i = 0; i < function2.Count; i++)
            {
                Console.Write(function2[i] + " ");
            }
            Console.Write("\n");
            MultipleOutputMinimizationSolver s = new MultipleOutputMinimizationSolver(this.variables, function1, function2);
            s.solve();
            s.PRNMINOUTPUT();
            MultipleInputOutput mio = new MultipleInputOutput(s);
            mio.Show();
        }