Encog.App.Analyst.Script.AnalystScript.AnalystScript C# (CSharp) Method

AnalystScript() public method

Construct an analyst script.
public AnalystScript ( ) : System
return System
        public AnalystScript()
        {
            _normalize = new AnalystNormalize(this);
            _segregate = new AnalystSegregate();
            _generated = new List<String>();
            _tasks = new Dictionary<String, AnalystTask>();
            _properties = new ScriptProperties();
            _properties.SetProperty(ScriptProperties.SetupConfigCSVFormat,
                                   AnalystFileFormat.DecpntComma);
            _properties.SetProperty(
                ScriptProperties.SetupConfigMaxClassCount,
                DefaultMaxClass);
            _properties
                .SetProperty(ScriptProperties.SetupConfigAllowedClasses,
                             "integer,string");
        }