-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExecutionParameters.cs
More file actions
27 lines (26 loc) · 1010 Bytes
/
ExecutionParameters.cs
File metadata and controls
27 lines (26 loc) · 1010 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
using System;
using System.Collections.Generic;
namespace Auto_Statistic
{
public partial class Executor
{
[Serializable]
public class ExecutionParameters
{
public List<string> executionFilesPaths = new List<string>();
public List<string> textProgramFilesPaths = new List<string>();
public List<string> interprParams = new List<string>();
public List<string> startParams = new List<string>();
public List<string> referenceResults = new List<string>();
public string checkAlgorithmUsingsText = "";
public string checkAlgorithmClassesText = "";
public string checkAlgorithmText = CheckAlg.defaultAlg;
public ushort launchNum = 10;
public float variance = 0.0005f;
public byte backProcLimit = 10;
public bool prohibitUsePageFile = true;
public bool Interpr = true;
public int timeLimit = 0;
}
}
}