Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GPDL/HeuristicLab.Problems.GPDL.Views/3.4/Properties/Resources.Designer.cs @ 9844

Last change on this file since 9844 was 9844, checked in by gkronber, 11 years ago

#2026 added two GP benchmark problems even-parity and multiplexer.

File size: 12.7 KB
RevLine 
[9519]1//------------------------------------------------------------------------------
2// <auto-generated>
3//     This code was generated by a tool.
[9844]4//     Runtime Version:4.0.30319.18052
[9519]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
11namespace 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 &lt;&lt;
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        ///&quot; ###                                          &quot;,
79        ///&quot;   #                                  .###..  &quot;,
80        ///&quot;   #                                  #    #  &quot;,
81        ///&quot;   #                                  #    #  &quot;,
82        ///&quot;   ####.#####           .############..    .  &quot;,
83        ///&quot;            #       [rest of string was truncated]&quot;;.
84        /// </summary>
85        internal static string Artificial_Ant {
86            get {
87                return ResourceManager.GetString("Artificial_Ant", resourceCulture);
88            }
89        }
90       
91        /// <summary>
[9844]92        ///   Looks up a localized string similar to PROBLEM EvenParity
93        ///CODE &lt;&lt;
94        ///  const int N = 5;
95        ///&gt;&gt;
96        ///
97        ///NONTERMINALS
98        ///  Expr&lt;&lt;bool[] d, out bool p&gt;&gt;.
99        ///  AND&lt;&lt;bool[] d, out bool p&gt;&gt;.
100        ///  OR&lt;&lt;bool[] d, out bool p&gt;&gt;.
101        ///  NAND&lt;&lt;bool[] d, out bool p&gt;&gt;.
102        ///  NOR&lt;&lt;bool[] d, out bool p&gt;&gt;.
103        ///
104        ///TERMINALS
105        ///  D&lt;&lt;out int val&gt;&gt;
106        ///    CONSTRAINTS
107        ///      val IN SET &lt;&lt;Enumerable.Range(0, N);&gt;&gt;
108        ///  .
109        ///
110        ///RULES
111        ///  Expr&lt;&lt;bool[] d, out bool p&gt;&gt; =                           LOCAL&lt;&lt; int val = 0; &gt;&gt;
112        ///    AND&lt;&lt;d, out p&gt;&gt;
113        ///    | OR&lt;&lt;d, out p&gt;&gt;
114        ///    | NAND&lt;&lt;d, out p&gt;&gt;
115        ///    | NOR&lt;&lt;d, out p [rest of string was truncated]&quot;;.
116        /// </summary>
117        internal static string EvenParity {
118            get {
119                return ResourceManager.GetString("EvenParity", resourceCulture);
120            }
121        }
122       
123        /// <summary>
[9519]124        ///   Looks up a localized string similar to PROBLEM Factorial
125        ///CODE&lt;&lt;
126        ///  string[] allTerminals = new string[] {&quot;a&quot;, &quot;b&quot;, &quot;c&quot;, &quot;d&quot;, &quot;e&quot;, &quot;n&quot;} ;
127        ///  SymTab symTab = new SymTab();
128        ///
129        ///  class SymTab {
130        ///    private Dictionary&lt;string, int&gt; values = new Dictionary&lt;string,int&gt;();
131        ///    public void SetValue(string id, int val) {
132        ///      values[id] = val;
133        ///    }
134        ///    public int GetValue(string id) {
135        ///      int val = 0;
136        ///      values.TryGetValue(id, out val);     
137        ///      return val;
138        ///    }
139        ///  }
140        ///&gt;&gt;
141        ///
142        ///NONTERMINALS
143        ///  Program&lt;&lt;int n, out int r&gt;&gt;.                  [rest of string was truncated]&quot;;.
144        /// </summary>
145        internal static string Factorial {
146            get {
147                return ResourceManager.GetString("Factorial", resourceCulture);
148            }
149        }
150       
151        /// <summary>
152        ///   Looks up a localized string similar to PROBLEM Fib
153        ///CODE&lt;&lt;
154        ///  string[] allTerminals = new string[] {&quot;a&quot;, &quot;b&quot;, &quot;c&quot;, &quot;d&quot;, &quot;e&quot;, &quot;n&quot;} ;
155        ///  SymTab symTab = new SymTab();
156        ///
157        ///  class SymTab {
158        ///    private Dictionary&lt;string, int&gt; values = new Dictionary&lt;string,int&gt;();
159        ///    public void SetValue(string id, int val) {
160        ///      values[id] = val;
161        ///    }
162        ///    public int GetValue(string id) {
163        ///      int val = 0;
164        ///      values.TryGetValue(id, out val);     
165        ///      return val;
166        ///    }
167        ///  }
168        ///&gt;&gt;
169        ///
170        ///NONTERMINALS
171        ///  Program&lt;&lt;int n, out int r&gt;&gt;.                        [rest of string was truncated]&quot;;.
172        /// </summary>
173        internal static string Fib {
174            get {
175                return ResourceManager.GetString("Fib", resourceCulture);
176            }
177        }
178       
179        /// <summary>
[9844]180        ///   Looks up a localized string similar to &lt;!-- Syntax definition of GPDL for AvalonEdit syntax highlighting --&gt;
[9674]181        ///&lt;SyntaxDefinition name=&quot;GPDL&quot;
182        ///        xmlns=&quot;http://icsharpcode.net/sharpdevelop/syntaxdefinition/2008&quot;&gt;
183        ///  &lt;Color name=&quot;Comment&quot; foreground=&quot;Green&quot; /&gt;
[9844]184        ///  &lt;Color name=&quot;SourceCode&quot; foreground=&quot;SlateGray&quot; /&gt;
[9674]185        ///
186        ///  &lt;!-- This is the main ruleset. --&gt;
[9844]187        ///  &lt;RuleSet ignoreCase=&quot;true&quot;&gt;
188        ///    &lt;Span color=&quot;Comment&quot; multiline=&quot;true&quot; begin=&quot;/\*&quot; end=&quot;\*/&quot; /&gt;
189        ///    &lt;Span color=&quot;SourceCode&quot; multiline=&quot;true&quot; begin=&quot;&amp;lt;&amp;lt;&quot; end=&quot;&amp;gt;&amp;gt;&quot;&gt;
190        ///      &lt;RuleSe [rest of string was truncated]&quot;;.
[9674]191        /// </summary>
192        internal static string GPDL {
193            get {
194                return ResourceManager.GetString("GPDL", resourceCulture);
195            }
196        }
197       
198        /// <summary>
[9519]199        ///   Looks up a localized string similar to PROBLEM MultiOutputMultiplier
200        ///
201        ///CODE &lt;&lt;
202        ///  const int N = 4;
203        ///  class State { public bool[] x1; public bool[] x2; public bool[] output; }
204        ///  private void GenerateProblemData(int n, out bool[][] a, out bool[][] b, out bool[][] expectedOutput) {
205        ///    var nConfigurations = (int)Math.Pow(2, n);
206        ///    var e = from i in Enumerable.Range(0, nConfigurations)
207        ///            from j in Enumerable.Range(0, i+1)
208        ///            select new {a = ToBitArray(N, i), b = ToBitArray(N, j), res = ToBitArray(2*N, i*j) };
209        ///   
210        ///    a  [rest of string was truncated]&quot;;.
211        /// </summary>
212        internal static string multi_output_multiplier {
213            get {
214                return ResourceManager.GetString("multi_output_multiplier", resourceCulture);
215            }
216        }
217       
218        /// <summary>
[9844]219        ///   Looks up a localized string similar to PROBLEM Multiplexer
220        ///
221        ///NONTERMINALS
222        ///  Expr&lt;&lt;bool[] d, out bool p&gt;&gt;.
223        ///  AND&lt;&lt;bool[] d, out bool p&gt;&gt;.
224        ///  OR&lt;&lt;bool[] d, out bool p&gt;&gt;.
225        ///  NOT&lt;&lt;bool[] d, out bool p&gt;&gt;.
226        ///  IF&lt;&lt;bool[] d, out bool p&gt;&gt;.
227        ///
228        ///TERMINALS
229        ///  A0. A1. A2. A2. D0. D1. D2. D3. D4. D5. D6. D7.
230        ///
231        ///RULES
232        ///  Expr&lt;&lt;bool[] d, out bool o&gt;&gt; =
233        ///    AND&lt;&lt;d, out p&gt;&gt;
234        ///    | OR&lt;&lt;d, out p&gt;&gt;
235        ///    | NOT&lt;&lt;d, out p&gt;&gt;
236        ///    | IF&lt;&lt;d, out p&gt;&gt;
237        ///    | A0                                                   SEM&lt;&lt; p = d[0]; &gt;&gt;
238        ///    | A1                                   [rest of string was truncated]&quot;;.
239        /// </summary>
240        internal static string Multiplexer {
241            get {
242                return ResourceManager.GetString("Multiplexer", resourceCulture);
243            }
244        }
245       
246        /// <summary>
[9519]247        ///   Looks up a localized string similar to PROBLEM SymbReg
248        ///
249        ///CODE &lt;&lt;
[9844]250        ///  double[,] x;
251        ///  double[] y;
[9519]252        ///  string[] variableNames;
253        ///  Dictionary&lt;string,int&gt; nameToCol;
254        /// 
255        ///  double GetValue(double[,] data, string varName, int row) {
256        ///    if(nameToCol == null) {
257        ///      /* init mapping */
258        ///      nameToCol = new Dictionary&lt;string, int&gt;();
259        ///      for(int i=0; i&lt;variableNames.Length; i++) {
260        ///        nameToCol[variableNames[i]] = i;
261        ///      }
262        ///    }
[9844]263        ///    return x[row, nameToCol[varName]];
[9519]264        ///  }
265        ///
[9844]266        ///  double RSquared(IEnumerable&lt;double&gt; xs, IEnumerable&lt;double&gt;  [rest of string was truncated]&quot;;.
[9519]267        /// </summary>
268        internal static string symbreg_HEAL {
269            get {
270                return ResourceManager.GetString("symbreg_HEAL", resourceCulture);
271            }
272        }
273       
274        /// <summary>
275        ///   Looks up a localized string similar to PROBLEM SymbRegKoza
276        ///CODE &lt;&lt;
[9844]277        ///  double[,] x;
278        ///  double[] y;
[9519]279        ///  string[] variableNames;
280        ///  Dictionary&lt;string,int&gt; nameToCol;
281        /// 
282        ///  double GetValue(double[,] data, string varName, int row) {
283        ///    if(nameToCol == null) {
284        ///      /* init mapping */
285        ///      nameToCol = new Dictionary&lt;string, int&gt;();
286        ///      for(int i=0; i&lt;variableNames.Length; i++) {
287        ///        nameToCol[variableNames[i]] = i;
288        ///      }
289        ///    }
[9844]290        ///    return x[row, nameToCol[varName]];
[9519]291        ///  }
292        ///
[9844]293        ///  double RSquared(IEnumerable&lt;double&gt; xs, IEnumerable&lt;double [rest of string was truncated]&quot;;.
[9519]294        /// </summary>
295        internal static string symbreg_Koza {
296            get {
297                return ResourceManager.GetString("symbreg_Koza", resourceCulture);
298            }
299        }
300    }
301}
Note: See TracBrowser for help on using the repository browser.