source: proiecte/ParallelANN/VisualBCM/Program.cs @ 171

Last change on this file since 171 was 171, checked in by (none), 14 years ago
File size: 796 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Windows.Forms;
5using System.Diagnostics;
6
7
8namespace VisualBCM
9{
10    static class Program
11    {
12        /// <summary>
13        /// The main entry point for the application.
14        /// </summary>
15        [STAThread]
16        static void Main()
17        {
18            /*
19            for (int tau = 2; tau < 10; tau++)
20            {
21                Debug.WriteLine("");
22                for (int t = 0; t < 10; t++)
23                    Debug.Write(Math.Exp(-(10.0 - t) / tau).ToString() + " ");
24            } */
25
26            Application.EnableVisualStyles();
27            Application.SetCompatibleTextRenderingDefault(false);
28            Application.Run(new MainForm());
29        }
30    }
31}
Note: See TracBrowser for help on using the repository browser.