Last change
on this file since 10222 was
9124,
checked in by gkronber, 12 years ago
|
#1967 implemented utility app to draw random samples using a GP prior
|
File size:
481 bytes
|
Rev | Line | |
---|
[9124] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Threading.Tasks;
|
---|
| 5 | using System.Windows.Forms;
|
---|
| 6 |
|
---|
| 7 | namespace 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.