Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GaussianProcessTuning/GaussianProcessDemo/Program.cs @ 11084

Last change on this file since 11084 was 9124, checked in by gkronber, 11 years ago

#1967 implemented utility app to draw random samples using a GP prior

File size: 481 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Threading.Tasks;
5using System.Windows.Forms;
6
7namespace GaussianProcessDemo {
8  static class Program {
9    /// <summary>
10    /// The main entry point for the application.
11    /// </summary>
12    [STAThread]
13    static void Main() {
14      Application.EnableVisualStyles();
15      Application.SetCompatibleTextRenderingDefault(false);
16      Application.Run(new Form1());
17    }
18  }
19}
Note: See TracBrowser for help on using the repository browser.