-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
33 lines (26 loc) · 751 Bytes
/
Copy pathProgram.cs
File metadata and controls
33 lines (26 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System;
using System.Collections.Generic;
namespace laba15
{
class Program
{
static void Main(string[] args)
{
Clynic.InitializeParams(new Dictionary<Params, object>()
{
{Params.OrdinNum, 20},
{Params.DocNum, 6},
{Params.DP, 0.4},
{Params.Stats, true},
{Params.UpdatePeriod, 2000},
{Params.MaxTime, 50},
{Params.PatientCome, 0.5 },
{Params.StatPeople, 120},
{Params.ToFile, true },
{Params.FileOut, "out.txt"}
});
Clynic.StartProcess();
Console.ReadKey();
}
}
}