//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.18052 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ namespace HeuristicLab.Problems.GPDL.Views.Properties { using System; /// /// A strongly-typed resource class, for looking up localized strings, etc. /// // This class was auto-generated by the StronglyTypedResourceBuilder // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { private static global::System.Resources.ResourceManager resourceMan; private static global::System.Globalization.CultureInfo resourceCulture; [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal Resources() { } /// /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("HeuristicLab.Problems.GPDL.Views.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; } } /// /// Overrides the current thread's CurrentUICulture property for all /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Globalization.CultureInfo Culture { get { return resourceCulture; } set { resourceCulture = value; } } /// /// Looks up a localized string similar to PROBLEM ArtificialAnt /// ///CODE << ///public struct Point { /// public int x; public int y; /// public Point(int x, int y) { /// this.x = x; /// this.y = y; /// } ///}; /// ///class World { /// ///private static string[] LosAltosTrail = new string[] { ///" ### ", ///" # .###.. ", ///" # # # ", ///" # # # ", ///" ####.##### .############.. . ", ///" # [rest of string was truncated]";. /// internal static string Artificial_Ant { get { return ResourceManager.GetString("Artificial_Ant", resourceCulture); } } /// /// Looks up a localized string similar to PROBLEM EvenParity ///CODE << /// const int N = 5; ///>> /// ///NONTERMINALS /// Expr<<bool[] d, out bool p>>. /// AND<<bool[] d, out bool p>>. /// OR<<bool[] d, out bool p>>. /// NAND<<bool[] d, out bool p>>. /// NOR<<bool[] d, out bool p>>. /// ///TERMINALS /// D<<out int val>> /// CONSTRAINTS /// val IN SET <<Enumerable.Range(0, N);>> /// . /// ///RULES /// Expr<<bool[] d, out bool p>> = LOCAL<< int val = 0; >> /// AND<<d, out p>> /// | OR<<d, out p>> /// | NAND<<d, out p>> /// | NOR<<d, out p [rest of string was truncated]";. /// internal static string EvenParity { get { return ResourceManager.GetString("EvenParity", resourceCulture); } } /// /// Looks up a localized string similar to PROBLEM Factorial ///CODE<< /// string[] allTerminals = new string[] {"a", "b", "c", "d", "e", "n"} ; /// SymTab symTab = new SymTab(); /// /// class SymTab { /// private Dictionary<string, int> values = new Dictionary<string,int>(); /// public void SetValue(string id, int val) { /// values[id] = val; /// } /// public int GetValue(string id) { /// int val = 0; /// values.TryGetValue(id, out val); /// return val; /// } /// } ///>> /// ///NONTERMINALS /// Program<<int n, out int r>>. [rest of string was truncated]";. /// internal static string Factorial { get { return ResourceManager.GetString("Factorial", resourceCulture); } } /// /// Looks up a localized string similar to PROBLEM Fib ///CODE<< /// string[] allTerminals = new string[] {"a", "b", "c", "d", "e", "n"} ; /// SymTab symTab = new SymTab(); /// /// class SymTab { /// private Dictionary<string, int> values = new Dictionary<string,int>(); /// public void SetValue(string id, int val) { /// values[id] = val; /// } /// public int GetValue(string id) { /// int val = 0; /// values.TryGetValue(id, out val); /// return val; /// } /// } ///>> /// ///NONTERMINALS /// Program<<int n, out int r>>. [rest of string was truncated]";. /// internal static string Fib { get { return ResourceManager.GetString("Fib", resourceCulture); } } /// /// Looks up a localized string similar to <!-- Syntax definition of GPDL for AvalonEdit syntax highlighting --> ///<SyntaxDefinition name="GPDL" /// xmlns="http://icsharpcode.net/sharpdevelop/syntaxdefinition/2008"> /// <Color name="Comment" foreground="Green" /> /// <Color name="SourceCode" foreground="SlateGray" /> /// /// <!-- This is the main ruleset. --> /// <RuleSet ignoreCase="true"> /// <Span color="Comment" multiline="true" begin="/\*" end="\*/" /> /// <Span color="SourceCode" multiline="true" begin="&lt;&lt;" end="&gt;&gt;"> /// <RuleSe [rest of string was truncated]";. /// internal static string GPDL { get { return ResourceManager.GetString("GPDL", resourceCulture); } } /// /// Looks up a localized string similar to PROBLEM LawnMower /// ///CODE << /// public int Width { get { return 8; } } /// public int Height { get { return 8; } } /// /// enum Direction {West, East, North, South}; /// /// class World { /// private bool[,] mowed = new bool[Width, Height]; /// public World() { /// Reset(); /// } /// public void Reset() { /// for(int col = 0; col < Width; col++) /// for(int row = 0; row < Height; row++) { /// mowed[col, row] = false; /// } /// } /// public void SetCellMowed(int col, int row) { /// m [rest of string was truncated]";. /// internal static string LawnMower { get { return ResourceManager.GetString("LawnMower", resourceCulture); } } /// /// Looks up a localized string similar to PROBLEM MultiOutputMultiplier /// ///CODE << /// const int N = 4; /// class State { public bool[] x1; public bool[] x2; public bool[] output; } /// private void GenerateProblemData(int n, out bool[][] a, out bool[][] b, out bool[][] expectedOutput) { /// var nConfigurations = (int)Math.Pow(2, n); /// var e = from i in Enumerable.Range(0, nConfigurations) /// from j in Enumerable.Range(0, i+1) /// select new {a = ToBitArray(N, i), b = ToBitArray(N, j), res = ToBitArray(2*N, i*j) }; /// /// a [rest of string was truncated]";. /// internal static string multi_output_multiplier { get { return ResourceManager.GetString("multi_output_multiplier", resourceCulture); } } /// /// Looks up a localized string similar to PROBLEM Multiplexer /// ///NONTERMINALS /// Expr<<bool[] d, out bool o>>. /// AND<<bool[] d, out bool o>>. /// OR<<bool[] d, out bool o>>. /// NOT<<bool[] d, out bool o>>. /// IF<<bool[] d, out bool o>>. /// ///TERMINALS /// A0. A1. A2. D0. D1. D2. D3. D4. D5. D6. D7. /// ///RULES /// Expr<<bool[] d, out bool o>> = /// AND<<d, out o>> /// | OR<<d, out o>> /// | NOT<<d, out o>> /// | IF<<d, out o>> /// | A0 SEM<< o = d[0]; >> /// | A1 [rest of string was truncated]";. /// internal static string Multiplexer { get { return ResourceManager.GetString("Multiplexer", resourceCulture); } } /// /// Looks up a localized string similar to PROBLEM SymbReg /// ///CODE << /// double[,] x; /// double[] y; /// string[] variableNames; /// Dictionary<string,int> nameToCol; /// /// double GetValue(double[,] data, string varName, int row) { /// if(nameToCol == null) { /// /* init mapping */ /// nameToCol = new Dictionary<string, int>(); /// for(int i=0; i<variableNames.Length; i++) { /// nameToCol[variableNames[i]] = i; /// } /// } /// return x[row, nameToCol[varName]]; /// } /// /// double RSquared(IEnumerable<double> xs, IEnumerable<double> [rest of string was truncated]";. /// internal static string symbreg_HEAL { get { return ResourceManager.GetString("symbreg_HEAL", resourceCulture); } } /// /// Looks up a localized string similar to PROBLEM SymbRegKoza ///CODE << /// double[,] x; /// double[] y; /// string[] variableNames; /// Dictionary<string,int> nameToCol; /// /// double GetValue(double[,] data, string varName, int row) { /// if(nameToCol == null) { /// /* init mapping */ /// nameToCol = new Dictionary<string, int>(); /// for(int i=0; i<variableNames.Length; i++) { /// nameToCol[variableNames[i]] = i; /// } /// } /// return x[row, nameToCol[varName]]; /// } /// /// double RSquared(IEnumerable<double> xs, IEnumerable<double [rest of string was truncated]";. /// internal static string symbreg_Koza { get { return ResourceManager.GetString("symbreg_Koza", resourceCulture); } } } }