1 | //------------------------------------------------------------------------------
|
---|
2 | // <auto-generated>
|
---|
3 | // This code was generated by a tool.
|
---|
4 | // Runtime Version:4.0.30319.18047
|
---|
5 | //
|
---|
6 | // Changes to this file may cause incorrect behavior and will be lost if
|
---|
7 | // the code is regenerated.
|
---|
8 | // </auto-generated>
|
---|
9 | //------------------------------------------------------------------------------
|
---|
10 |
|
---|
11 | namespace HeuristicLab.Problems.GPDL.Views.Properties {
|
---|
12 | using System;
|
---|
13 |
|
---|
14 |
|
---|
15 | /// <summary>
|
---|
16 | /// A strongly-typed resource class, for looking up localized strings, etc.
|
---|
17 | /// </summary>
|
---|
18 | // This class was auto-generated by the StronglyTypedResourceBuilder
|
---|
19 | // class via a tool like ResGen or Visual Studio.
|
---|
20 | // To add or remove a member, edit your .ResX file then rerun ResGen
|
---|
21 | // with the /str option, or rebuild your VS project.
|
---|
22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
|
---|
23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
---|
24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
---|
25 | internal class Resources {
|
---|
26 |
|
---|
27 | private static global::System.Resources.ResourceManager resourceMan;
|
---|
28 |
|
---|
29 | private static global::System.Globalization.CultureInfo resourceCulture;
|
---|
30 |
|
---|
31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
---|
32 | internal Resources() {
|
---|
33 | }
|
---|
34 |
|
---|
35 | /// <summary>
|
---|
36 | /// Returns the cached ResourceManager instance used by this class.
|
---|
37 | /// </summary>
|
---|
38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
---|
39 | internal static global::System.Resources.ResourceManager ResourceManager {
|
---|
40 | get {
|
---|
41 | if (object.ReferenceEquals(resourceMan, null)) {
|
---|
42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("HeuristicLab.Problems.GPDL.Views.Properties.Resources", typeof(Resources).Assembly);
|
---|
43 | resourceMan = temp;
|
---|
44 | }
|
---|
45 | return resourceMan;
|
---|
46 | }
|
---|
47 | }
|
---|
48 |
|
---|
49 | /// <summary>
|
---|
50 | /// Overrides the current thread's CurrentUICulture property for all
|
---|
51 | /// resource lookups using this strongly typed resource class.
|
---|
52 | /// </summary>
|
---|
53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
---|
54 | internal static global::System.Globalization.CultureInfo Culture {
|
---|
55 | get {
|
---|
56 | return resourceCulture;
|
---|
57 | }
|
---|
58 | set {
|
---|
59 | resourceCulture = value;
|
---|
60 | }
|
---|
61 | }
|
---|
62 |
|
---|
63 | /// <summary>
|
---|
64 | /// Looks up a localized string similar to PROBLEM ArtificialAnt
|
---|
65 | ///
|
---|
66 | ///CODE <<
|
---|
67 | ///public struct Point {
|
---|
68 | /// public int x; public int y;
|
---|
69 | /// public Point(int x, int y) {
|
---|
70 | /// this.x = x;
|
---|
71 | /// this.y = y;
|
---|
72 | /// }
|
---|
73 | ///};
|
---|
74 | ///
|
---|
75 | ///class World {
|
---|
76 | ///
|
---|
77 | ///private static string[] LosAltosTrail = new string[] {
|
---|
78 | ///" ### ",
|
---|
79 | ///" # .###.. ",
|
---|
80 | ///" # # # ",
|
---|
81 | ///" # # # ",
|
---|
82 | ///" ####.##### .############.. . ",
|
---|
83 | ///" # [rest of string was truncated]";.
|
---|
84 | /// </summary>
|
---|
85 | internal static string Artificial_Ant {
|
---|
86 | get {
|
---|
87 | return ResourceManager.GetString("Artificial_Ant", resourceCulture);
|
---|
88 | }
|
---|
89 | }
|
---|
90 |
|
---|
91 | /// <summary>
|
---|
92 | /// Looks up a localized string similar to PROBLEM Factorial
|
---|
93 | ///CODE<<
|
---|
94 | /// string[] allTerminals = new string[] {"a", "b", "c", "d", "e", "n"} ;
|
---|
95 | /// SymTab symTab = new SymTab();
|
---|
96 | ///
|
---|
97 | /// class SymTab {
|
---|
98 | /// private Dictionary<string, int> values = new Dictionary<string,int>();
|
---|
99 | /// public void SetValue(string id, int val) {
|
---|
100 | /// values[id] = val;
|
---|
101 | /// }
|
---|
102 | /// public int GetValue(string id) {
|
---|
103 | /// int val = 0;
|
---|
104 | /// values.TryGetValue(id, out val);
|
---|
105 | /// return val;
|
---|
106 | /// }
|
---|
107 | /// }
|
---|
108 | ///>>
|
---|
109 | ///
|
---|
110 | ///NONTERMINALS
|
---|
111 | /// Program<<int n, out int r>>. [rest of string was truncated]";.
|
---|
112 | /// </summary>
|
---|
113 | internal static string Factorial {
|
---|
114 | get {
|
---|
115 | return ResourceManager.GetString("Factorial", resourceCulture);
|
---|
116 | }
|
---|
117 | }
|
---|
118 |
|
---|
119 | /// <summary>
|
---|
120 | /// Looks up a localized string similar to PROBLEM Fib
|
---|
121 | ///CODE<<
|
---|
122 | /// string[] allTerminals = new string[] {"a", "b", "c", "d", "e", "n"} ;
|
---|
123 | /// SymTab symTab = new SymTab();
|
---|
124 | ///
|
---|
125 | /// class SymTab {
|
---|
126 | /// private Dictionary<string, int> values = new Dictionary<string,int>();
|
---|
127 | /// public void SetValue(string id, int val) {
|
---|
128 | /// values[id] = val;
|
---|
129 | /// }
|
---|
130 | /// public int GetValue(string id) {
|
---|
131 | /// int val = 0;
|
---|
132 | /// values.TryGetValue(id, out val);
|
---|
133 | /// return val;
|
---|
134 | /// }
|
---|
135 | /// }
|
---|
136 | ///>>
|
---|
137 | ///
|
---|
138 | ///NONTERMINALS
|
---|
139 | /// Program<<int n, out int r>>. [rest of string was truncated]";.
|
---|
140 | /// </summary>
|
---|
141 | internal static string Fib {
|
---|
142 | get {
|
---|
143 | return ResourceManager.GetString("Fib", resourceCulture);
|
---|
144 | }
|
---|
145 | }
|
---|
146 |
|
---|
147 | /// <summary>
|
---|
148 | /// Looks up a localized string similar to <!-- Syntax definition of GPDL for Avalonedit syntax highlighting -->
|
---|
149 | ///<SyntaxDefinition name="GPDL"
|
---|
150 | /// xmlns="http://icsharpcode.net/sharpdevelop/syntaxdefinition/2008">
|
---|
151 | /// <Color name="Comment" foreground="Green" />
|
---|
152 | /// <Color name="String" foreground="Blue" />
|
---|
153 | ///
|
---|
154 | /// <!-- This is the main ruleset. -->
|
---|
155 | /// <RuleSet>
|
---|
156 | /// <Span color="Comment" multiline="true" nested="true"
|
---|
157 | /// begin="/\*" end="\*/" />
|
---|
158 | ///
|
---|
159 | /// <Span color="SourceCode" multiline="true"
|
---|
160 | /// begin="&lt;&lt;" end="&gt;&gt;" />
|
---|
161 | /// <K [rest of string was truncated]";.
|
---|
162 | /// </summary>
|
---|
163 | internal static string GPDL {
|
---|
164 | get {
|
---|
165 | return ResourceManager.GetString("GPDL", resourceCulture);
|
---|
166 | }
|
---|
167 | }
|
---|
168 |
|
---|
169 | /// <summary>
|
---|
170 | /// Looks up a localized string similar to PROBLEM MultiOutputMultiplier
|
---|
171 | ///
|
---|
172 | ///CODE <<
|
---|
173 | /// const int N = 4;
|
---|
174 | /// class State { public bool[] x1; public bool[] x2; public bool[] output; }
|
---|
175 | /// private void GenerateProblemData(int n, out bool[][] a, out bool[][] b, out bool[][] expectedOutput) {
|
---|
176 | /// var nConfigurations = (int)Math.Pow(2, n);
|
---|
177 | /// var e = from i in Enumerable.Range(0, nConfigurations)
|
---|
178 | /// from j in Enumerable.Range(0, i+1)
|
---|
179 | /// select new {a = ToBitArray(N, i), b = ToBitArray(N, j), res = ToBitArray(2*N, i*j) };
|
---|
180 | ///
|
---|
181 | /// a [rest of string was truncated]";.
|
---|
182 | /// </summary>
|
---|
183 | internal static string multi_output_multiplier {
|
---|
184 | get {
|
---|
185 | return ResourceManager.GetString("multi_output_multiplier", resourceCulture);
|
---|
186 | }
|
---|
187 | }
|
---|
188 |
|
---|
189 | /// <summary>
|
---|
190 | /// Looks up a localized string similar to PROBLEM SymbReg
|
---|
191 | ///
|
---|
192 | ///CODE <<
|
---|
193 | /// double[,] inputValues;
|
---|
194 | /// double[] targetValues;
|
---|
195 | /// string[] variableNames;
|
---|
196 | /// Dictionary<string,int> nameToCol;
|
---|
197 | ///
|
---|
198 | /// double GetValue(double[,] data, string varName, int row) {
|
---|
199 | /// if(nameToCol == null) {
|
---|
200 | /// /* init mapping */
|
---|
201 | /// nameToCol = new Dictionary<string, int>();
|
---|
202 | /// for(int i=0; i<variableNames.Length; i++) {
|
---|
203 | /// nameToCol[variableNames[i]] = i;
|
---|
204 | /// }
|
---|
205 | /// }
|
---|
206 | /// return data[row, nameToCol[varName]];
|
---|
207 | /// }
|
---|
208 | ///
|
---|
209 | /// double RSquared(IEnumerable<double> [rest of string was truncated]";.
|
---|
210 | /// </summary>
|
---|
211 | internal static string symbreg_HEAL {
|
---|
212 | get {
|
---|
213 | return ResourceManager.GetString("symbreg_HEAL", resourceCulture);
|
---|
214 | }
|
---|
215 | }
|
---|
216 |
|
---|
217 | /// <summary>
|
---|
218 | /// Looks up a localized string similar to PROBLEM SymbRegKoza
|
---|
219 | ///CODE <<
|
---|
220 | /// double[,] inputValues;
|
---|
221 | /// double[] targetValues;
|
---|
222 | /// string[] variableNames;
|
---|
223 | /// Dictionary<string,int> nameToCol;
|
---|
224 | ///
|
---|
225 | /// double GetValue(double[,] data, string varName, int row) {
|
---|
226 | /// if(nameToCol == null) {
|
---|
227 | /// /* init mapping */
|
---|
228 | /// nameToCol = new Dictionary<string, int>();
|
---|
229 | /// for(int i=0; i<variableNames.Length; i++) {
|
---|
230 | /// nameToCol[variableNames[i]] = i;
|
---|
231 | /// }
|
---|
232 | /// }
|
---|
233 | /// return data[row, nameToCol[varName]];
|
---|
234 | /// }
|
---|
235 | ///
|
---|
236 | /// double RSquared(IEnumerable<double [rest of string was truncated]";.
|
---|
237 | /// </summary>
|
---|
238 | internal static string symbreg_Koza {
|
---|
239 | get {
|
---|
240 | return ResourceManager.GetString("symbreg_Koza", resourceCulture);
|
---|
241 | }
|
---|
242 | }
|
---|
243 | }
|
---|
244 | }
|
---|