Changeset 16899 for branches/2988_ModelsOfModels2/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding
- Timestamp:
- 05/06/19 14:20:06 (6 years ago)
- Location:
- branches/2988_ModelsOfModels2/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2988_ModelsOfModels2/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding
- Property svn:mergeinfo changed
/trunk/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding merged: 16802
- Property svn:mergeinfo changed
-
branches/2988_ModelsOfModels2/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Formatters/SymbolicExpressionTreeGraphvizFormatter.cs
r16565 r16899 33 33 // match Koza style 34 34 {"ProgramRootSymbol", "Prog"}, 35 {"StartSymbol", "RPB"}, 35 {"StartSymbol", "RPB"}, 36 37 // short form 38 {"Subtraction", "-" }, 39 {"Addition", "+" }, 40 {"Multiplication", "*" }, 41 {"Division", "/" }, 42 {"Absolute", "abs" }, 43 {"AnalyticQuotient", "AQ" }, 44 {"Sine", "sin" }, 45 {"Cosine", "cos" }, 46 {"Tanget", "tan" }, 47 {"HyperbolicTangent", "tanh" }, 48 {"Exponential", "exp" }, 49 {"Logarithm", "log" }, 50 {"SquareRoot", "sqrt" }, 51 {"Square", "sqr" }, 52 {"CubeRoot", "cbrt" }, 53 {"Cube", "cube" }, 54 {"GreaterThan", ">" }, 55 {"LessThan", "<" }, 36 56 }; 37 57 -
branches/2988_ModelsOfModels2/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4.csproj
r16760 r16899 100 100 </PropertyGroup> 101 101 <ItemGroup> 102 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 103 <SpecificVersion>False</SpecificVersion> 104 <HintPath>..\..\..\..\trunk\bin\HEAL.Attic.dll</HintPath> 105 <Private>False</Private> 106 </Reference> 102 107 <Reference Include="HeuristicLab.Analysis-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 103 108 <SpecificVersion>False</SpecificVersion> 104 109 <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Analysis-3.3.dll</HintPath> 110 </Reference> 111 <Reference Include="HeuristicLab.Attic, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> 112 <SpecificVersion>False</SpecificVersion> 113 <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Attic.dll</HintPath> 105 114 </Reference> 106 115 <Reference Include="HeuristicLab.Collections-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> … … 279 288 </BootstrapperPackage> 280 289 </ItemGroup> 281 <ItemGroup>282 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">283 <SpecificVersion>False</SpecificVersion>284 <HintPath>..\..\bin\HEAL.Attic.dll</HintPath>285 <Private>False</Private>286 </Reference>287 </ItemGroup>288 290 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 289 291 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Note: See TracChangeset
for help on using the changeset viewer.