Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/05/13 11:37:13 (11 years ago)
Author:
gkronber
Message:

#2026 added lawn mower problem. create a OSGA for solving the compiled problem directly

Location:
branches/HeuristicLab.Problems.GPDL/HeuristicLab.Problems.GPDL.Views/3.4/Properties
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.GPDL/HeuristicLab.Problems.GPDL.Views/3.4/Properties/Resources.Designer.cs

    r9844 r9846  
    197197       
    198198        /// <summary>
     199        ///   Looks up a localized string similar to PROBLEM LawnMower
     200        ///
     201        ///CODE &lt;&lt;
     202        ///  public int Width { get { return 8; } }
     203        ///  public int Height { get { return 8; } }
     204        ///
     205        ///  enum Direction {West, East, North, South};
     206        ///
     207        ///  class World {
     208        ///    private bool[,] mowed = new bool[Width, Height];
     209        ///    public World() {
     210        ///      Reset();
     211        ///    }
     212        ///    public void Reset() {
     213        ///      for(int col = 0; col &lt; Width; col++)
     214        ///        for(int row = 0; row &lt; Height; row++) {
     215        ///          mowed[col, row] = false;
     216        ///        }
     217        ///    }
     218        ///    public void SetCellMowed(int col, int row) {
     219        ///      m [rest of string was truncated]&quot;;.
     220        /// </summary>
     221        internal static string LawnMower {
     222            get {
     223                return ResourceManager.GetString("LawnMower", resourceCulture);
     224            }
     225        }
     226       
     227        /// <summary>
    199228        ///   Looks up a localized string similar to PROBLEM MultiOutputMultiplier
    200229        ///
     
    220249        ///
    221250        ///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;.
     251        ///  Expr&lt;&lt;bool[] d, out bool o&gt;&gt;.
     252        ///  AND&lt;&lt;bool[] d, out bool o&gt;&gt;.
     253        ///  OR&lt;&lt;bool[] d, out bool o&gt;&gt;.
     254        ///  NOT&lt;&lt;bool[] d, out bool o&gt;&gt;.
     255        ///  IF&lt;&lt;bool[] d, out bool o&gt;&gt;.
    227256        ///
    228257        ///TERMINALS
    229         ///  A0. A1. A2. A2. D0. D1. D2. D3. D4. D5. D6. D7.
     258        ///  A0. A1. A2. D0. D1. D2. D3. D4. D5. D6. D7.
    230259        ///
    231260        ///RULES
    232261        ///  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;;.
     262        ///    AND&lt;&lt;d, out o&gt;&gt;
     263        ///    | OR&lt;&lt;d, out o&gt;&gt;
     264        ///    | NOT&lt;&lt;d, out o&gt;&gt;
     265        ///    | IF&lt;&lt;d, out o&gt;&gt;
     266        ///    | A0                                                   SEM&lt;&lt; o = d[0]; &gt;&gt;
     267        ///    | A1                                       [rest of string was truncated]&quot;;.
    239268        /// </summary>
    240269        internal static string Multiplexer {
  • branches/HeuristicLab.Problems.GPDL/HeuristicLab.Problems.GPDL.Views/3.4/Properties/Resources.resx

    r9844 r9846  
    134134    <value>..\Resources\GPDL.xshd;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value>
    135135  </data>
     136  <data name="LawnMower" type="System.Resources.ResXFileRef, System.Windows.Forms">
     137    <value>..\resources\lawnmower.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
     138  </data>
    136139  <data name="Multiplexer" type="System.Resources.ResXFileRef, System.Windows.Forms">
    137140    <value>..\resources\multiplexer.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
Note: See TracChangeset for help on using the changeset viewer.