using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; using System.Diagnostics; namespace VisualBCM { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { /* for (int tau = 2; tau < 10; tau++) { Debug.WriteLine(""); for (int t = 0; t < 10; t++) Debug.Write(Math.Exp(-(10.0 - t) / tau).ToString() + " "); } */ Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new MainForm()); } } }