Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/13/14 12:54:44 (10 years ago)
Author:
bburlacu
Message:

#2218: Moved the SymbolicExpressionImporter from HeuristicLab.Tests to HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Importer.

Location:
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Importer
Files:
1 added
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Importer/SymbolicExpressionImporter.cs

    r11454 r11457  
    2626using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    2727
    28 namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Tests {
    29   internal class SymbolicExpressionImporter {
     28namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
     29  public class SymbolicExpressionImporter {
    3030    private const string VARSTART = "VAR";
    3131    private const string LAGGEDVARSTART = "LAGVARIABLE";
     
    8686    StartSymbol startSymbol = new StartSymbol();
    8787
    88     internal ISymbolicExpressionTree Import(string str) {
     88    public ISymbolicExpressionTree Import(string str) {
    8989      str = str.Replace("(", " ( ").Replace(")", " ) ");
    9090      ISymbolicExpressionTreeNode root = programRootSymbol.CreateTreeNode();
Note: See TracChangeset for help on using the changeset viewer.