//------------------------------------------------------------------------------
//
// This code was generated by a tool.
// Runtime Version:4.0.30319.18047
//
// 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 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="String" foreground="Blue" />
///
/// <!-- This is the main ruleset. -->
/// <RuleSet>
/// <Span color="Comment" multiline="true" nested="true"
/// begin="/\*" end="\*/" />
///
/// <Span color="SourceCode" multiline="true"
/// begin="<<" end=">>" />
/// <K [rest of string was truncated]";.
///
internal static string GPDL {
get {
return ResourceManager.GetString("GPDL", 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 SymbReg
///
///CODE <<
/// double[,] inputValues;
/// double[] targetValues;
/// 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 data[row, nameToCol[varName]];
/// }
///
/// double RSquared(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[,] inputValues;
/// double[] targetValues;
/// 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 data[row, nameToCol[varName]];
/// }
///
/// double RSquared(IEnumerable<double [rest of string was truncated]";.
///
internal static string symbreg_Koza {
get {
return ResourceManager.GetString("symbreg_Koza", resourceCulture);
}
}
}
}