Changeset 5881
- Timestamp:
- 03/30/11 13:10:43 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.ExternalEvaluation.GP/3.3
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.ExternalEvaluation.GP/3.3/HeuristicLab.Problems.ExternalEvaluation.GP-3.3.csproj
r5809 r5881 109 109 <None Include="HeuristicLabProblemsExternalEvaluationGPPlugin.cs.frame" /> 110 110 <Compile Include="Grammar\FullFunctionalExpressionGrammar.cs" /> 111 <Compile Include="Grammar\TypeCoherentExpressionGrammar.cs" /> 111 112 <Compile Include="HeuristicLabProblemsExternalEvaluationGPPlugin.cs" /> 112 113 <Compile Include="Interpretation\ITreeInterpreter.cs" /> -
trunk/sources/HeuristicLab.Problems.ExternalEvaluation.GP/3.3/SymbolicExpressionTreeStringConverter.cs
r5445 r5881 60 60 61 61 protected override void ConvertSymbolicExpressionTree(SymbolicExpressionTree tree, string name, SolutionMessage.Builder builder) { 62 string stringRep = formatter.Format(tree); 63 stringRep .Replace(Environment.NewLine, "");62 string stringRep = formatter.Format(tree); 63 stringRep = stringRep.Replace(Environment.NewLine, ""); 64 64 SolutionMessage.Types.StringVariable.Builder stringVariable = SolutionMessage.Types.StringVariable.CreateBuilder(); 65 65 stringVariable.SetName(name).SetData(stringRep);
Note: See TracChangeset
for help on using the changeset viewer.