Changeset 9846 for branches/HeuristicLab.Problems.GPDL/HeuristicLab.Problems.GPDL.Views/3.4/Properties
- Timestamp:
- 08/05/13 11:37:13 (11 years ago)
- 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 197 197 198 198 /// <summary> 199 /// Looks up a localized string similar to PROBLEM LawnMower 200 /// 201 ///CODE << 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 < Width; col++) 214 /// for(int row = 0; row < Height; row++) { 215 /// mowed[col, row] = false; 216 /// } 217 /// } 218 /// public void SetCellMowed(int col, int row) { 219 /// m [rest of string was truncated]";. 220 /// </summary> 221 internal static string LawnMower { 222 get { 223 return ResourceManager.GetString("LawnMower", resourceCulture); 224 } 225 } 226 227 /// <summary> 199 228 /// Looks up a localized string similar to PROBLEM MultiOutputMultiplier 200 229 /// … … 220 249 /// 221 250 ///NONTERMINALS 222 /// Expr<<bool[] d, out bool p>>.223 /// AND<<bool[] d, out bool p>>.224 /// OR<<bool[] d, out bool p>>.225 /// NOT<<bool[] d, out bool p>>.226 /// IF<<bool[] d, out bool p>>.251 /// Expr<<bool[] d, out bool o>>. 252 /// AND<<bool[] d, out bool o>>. 253 /// OR<<bool[] d, out bool o>>. 254 /// NOT<<bool[] d, out bool o>>. 255 /// IF<<bool[] d, out bool o>>. 227 256 /// 228 257 ///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. 230 259 /// 231 260 ///RULES 232 261 /// Expr<<bool[] d, out bool o>> = 233 /// AND<<d, out p>>234 /// | OR<<d, out p>>235 /// | NOT<<d, out p>>236 /// | IF<<d, out p>>237 /// | A0 SEM<< p= d[0]; >>238 /// | A1 [rest of string was truncated]";.262 /// AND<<d, out o>> 263 /// | OR<<d, out o>> 264 /// | NOT<<d, out o>> 265 /// | IF<<d, out o>> 266 /// | A0 SEM<< o = d[0]; >> 267 /// | A1 [rest of string was truncated]";. 239 268 /// </summary> 240 269 internal static string Multiplexer { -
branches/HeuristicLab.Problems.GPDL/HeuristicLab.Problems.GPDL.Views/3.4/Properties/Resources.resx
r9844 r9846 134 134 <value>..\Resources\GPDL.xshd;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value> 135 135 </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> 136 139 <data name="Multiplexer" type="System.Resources.ResXFileRef, System.Windows.Forms"> 137 140 <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.