-
-
Notifications
You must be signed in to change notification settings - Fork 264
/
Copy pathStringLengthFitness.cs
203 lines (172 loc) · 5.56 KB
/
StringLengthFitness.cs
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
using AIProgrammer.Fitness.Base;
using AIProgrammer.GeneticAlgorithm;
using AIProgrammer.Managers;
using AIProgrammer.Types;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Xml;
namespace AIProgrammer.Fitness.Concrete
{
/// <summary>
/// Returns the length of a string.
/// </summary>
public class StringLengthFitness : FitnessBase
{
private static string[] _trainingExamples = { "cori@domain.com", "mt@po.box", "test", "johnandjanesdfgjnsdkfjgjnrtkhreuitgure", "unknown-string-goes-here" };
private static int[] _trainingResults;
#region Settings
public override int? GenomeSize
{
get
{
return 10;
}
}
public override int? MaxGenomeSize
{
get
{
return 150;
}
}
public override int? ExpandAmount
{
get
{
return 2;
}
}
public override int? ExpandRate
{
get
{
return 2000;
}
}
#endregion
public StringLengthFitness(GA ga, int maxIterationCount, string appendFunctions = null)
: base(ga, maxIterationCount, appendFunctions)
{
if (_targetFitness == 0)
{
// Extract expected results from training examples.
_trainingResults = _trainingExamples.ToList().ConvertAll(e => { return e.Length; }).ToArray();
// Assign target fitness.
_targetFitness = _trainingExamples.Length * 256;
}
}
#region FitnessBase Members
protected override double GetFitnessMethod(string program)
{
double countBonus = 0;
double penalty = 0;
for (int i = 0; i < _trainingExamples.Length; i++)
{
try
{
int state = 0;
_console.Clear();
// Run the program.
_bf = new Interpreter(program, () =>
{
if (state < _trainingExamples[i].Length)
{
// Send input.
return (byte)_trainingExamples[i][state++];
}
else
{
// Not ready for input.
return 0;
}
},
(b) =>
{
if (state < _trainingExamples[i].Length)
{
// Apply a penalty for outputting before reading the input.
penalty += 10;
}
_console.Append(b.ToString());
});
_bf.Run(_maxIterationCount);
}
catch
{
}
if (_console.Length > 0)
{
string console = _console.ToString();
_output.Append(console);
_output.Append(",");
if (Int32.TryParse(console, out int value))
{
Fitness += 256 - Math.Abs(value - _trainingResults[i]);
}
}
// Make the AI wait until a solution is found without the penalty.
Fitness -= penalty;
// Check for solution.
IsFitnessAchieved();
// Bonus for less operations to optimize the code.
countBonus += ((_maxIterationCount - _bf.m_Ticks) / 1000.0);
Ticks += _bf.m_Ticks;
TotalTicks += _bf.m_TotalTicks;
}
if (_fitness != Double.MaxValue)
{
_fitness = Fitness + countBonus;
}
return _fitness;
}
protected override void RunProgramMethod(string program)
{
for (int i = 0; i < 99; i++)
{
// Get input from the user.
Console.WriteLine();
Console.Write(">: ");
string line = Console.ReadLine();
int index = 0;
_console.Clear();
try
{
// Run the program.
Interpreter bf = new Interpreter(program, () =>
{
byte b;
// Send the next character.
if (index < line.Length)
{
b = (byte)line[index++];
}
else
{
b = 0;
}
return b;
},
(b) =>
{
_console.Append(b.ToString());
});
bf.Run(_maxIterationCount);
}
catch
{
}
Console.WriteLine(_console.ToString());
}
}
public override string GetConstructorParameters()
{
return _maxIterationCount.ToString();
}
#endregion
}
}