Last change
on this file since 17316 was
16667,
checked in by abeham, 6 years ago
|
Added further projects useful for interfacing with irace
|
File size:
850 bytes
|
Rev | Line | |
---|
[16667] | 1 | using System.Collections.Generic;
|
---|
| 2 | using CommandLine;
|
---|
| 3 |
|
---|
| 4 | namespace HiveIraceSubmit {
|
---|
| 5 | class Options {
|
---|
| 6 | [Value(0, HelpText = "Configuration ID, set by irace.")]
|
---|
| 7 | public int ConfigId { get; set; }
|
---|
| 8 |
|
---|
| 9 | [Value(1, HelpText = "Instance ID, set by irace.")]
|
---|
| 10 | public int InstanceId { get; set; }
|
---|
| 11 |
|
---|
| 12 | [Value(2, HelpText = "Seed, set by irace.")]
|
---|
| 13 | public long Seed { get; set; }
|
---|
| 14 |
|
---|
| 15 | [Value(3, Default = "20-15-35", HelpText = "Name of the problem instance, set by irace..", Required = true)]
|
---|
| 16 | public string ProblemInstance { get; set; }
|
---|
| 17 |
|
---|
| 18 | [Value(4, HelpText = "Name of the algorithm instance.", Required = true)]
|
---|
| 19 | public string Algorithm { get; set; }
|
---|
| 20 |
|
---|
| 21 | [Value(5, HelpText = "The parameters and their corresponding value.", Required = false)]
|
---|
| 22 | public IEnumerable<string> Configuration { get; set; }
|
---|
| 23 | }
|
---|
| 24 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.