Changeset 14142 for trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/MctsSymbolicRegression/SymbolicExpressionGenerator.cs
- Timestamp:
- 07/21/16 05:30:47 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/MctsSymbolicRegression/SymbolicExpressionGenerator.cs
r14135 r14142 176 176 s = 0; 177 177 if (op == OpCodes.LoadVar) { 178 s = (short)(( (short)code[pc] << 8) | (short)code[pc + 1]);178 s = (short)((code[pc] << 8) | code[pc + 1]); 179 179 pc += 2; 180 180 }
Note: See TracChangeset
for help on using the changeset viewer.