You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AIProgrammer/Program.cs
+21-2Lines changed: 21 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -44,10 +44,11 @@ class Program
44
44
privatestaticint_maxIterationCount=5000;// Max iterations a program may run before being killed (prevents infinite loops).
45
45
privatestaticint_expandAmount=0;// The max genome size will expand by this amount, every _expandRate iterations (may help learning). Set to 0 to disable.
46
46
privatestaticint_expandRate=5000;// The max genome size will expand by _expandAmount, at this interval of generations.
/// Callback handler for each time a function completes solving a step of its process. For example, solving a word within a sentence, etc.
73
+
/// </summary>
74
+
/// <param name="program">Complete append code generated so far. This can be set as the value for _appendCode to generate programs.</param>
75
+
/// <param name="param">Optional parameter supplied by Function to indicate what has been solved (i.e., the term, sentence, numeric value, etc).</param>
0 commit comments