Changeset 14116 for stable/HeuristicLab.Problems.DataAnalysis.Symbolic
- Timestamp:
- 07/19/16 16:52:14 (8 years ago)
- Location:
- stable
- Files:
-
- 3 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 14024,14026,14036,14109
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.DataAnalysis.Symbolic
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic merged: 14024,14026
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Formatters/InfixExpressionFormatter.cs
r14024 r14116 37 37 [Item("Infix Symbolic Expression Tree Formatter", "A string formatter that converts symbolic expression trees to infix expressions.")] 38 38 39 public class InfixExpressionFormatter : NamedItem, ISymbolicExpressionTreeStringFormatter {39 public sealed class InfixExpressionFormatter : NamedItem, ISymbolicExpressionTreeStringFormatter { 40 40 41 41 -
stable/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/HeuristicLab.Problems.DataAnalysis.Symbolic-3.4.csproj
r13310 r14116 133 133 <SubType>Code</SubType> 134 134 </Compile> 135 <Compile Include="Formatters\InfixExpressionFormatter.cs" /> 135 136 <Compile Include="Formatters\SymbolicDataAnalysisExpressionMathematicaFormatter.cs" /> 136 137 <Compile Include="Formatters\SymbolicDataAnalysisExpressionCSharpFormatter.cs" /> 138 <Compile Include="Importer\InfixExpressionParser.cs" /> 137 139 <Compile Include="Importer\SymbolicExpressionImporter.cs" /> 138 140 <Compile Include="Importer\Token.cs" /> -
stable/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Importer/InfixExpressionParser.cs
r14024 r14116 36 36 /// Variable names are case sensitive. Function names are not case sensitive. 37 37 /// </summary> 38 public class InfixExpressionParser {38 public sealed class InfixExpressionParser { 39 39 private enum TokenType { Operator, Identifier, Number, LeftPar, RightPar, End, NA }; 40 40 private class Token {
Note: See TracChangeset
for help on using the changeset viewer.