コード例 #1
0
ファイル: AnalystScript.cs プロジェクト: neismit/emds
 public AnalystScript()
 {
     while (true)
     {
         this._x137d2319cbd2bef2 = new AnalystNormalize(this);
         this._x41b21b8404d1e8fd = new AnalystSegregate();
         this._xb2331775ea68cd6f = new List<string>();
         this._xa4ef4a3fe0a24a84 = new Dictionary<string, AnalystTask>();
         this._xe11545499171cc05 = new ScriptProperties();
         this._xe11545499171cc05.SetProperty("SETUP:CONFIG_csvFormat", AnalystFileFormat.DecpntComma);
         this._xe11545499171cc05.SetProperty("SETUP:CONFIG_maxClassCount", 50);
         this._xe11545499171cc05.SetProperty("SETUP:CONFIG_allowedClasses", "integer,string");
         if (0xff != 0)
         {
             return;
         }
     }
 }
コード例 #2
0
 /// <summary>
 ///     Construct an analyst script.
 /// </summary>
 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");
 }
コード例 #3
0
ファイル: Cmd.cs プロジェクト: neismit/emds
 /// <summary>
 /// Construct this command.
 /// </summary>
 ///
 /// <param name="theAnalyst">The analyst that this command belongs to.</param>
 protected Cmd(EncogAnalyst theAnalyst)
 {
     _analyst = theAnalyst;
     _script = _analyst.Script;
     _properties = _script.Properties;
 }
コード例 #4
0
ファイル: Cmd.cs プロジェクト: neismit/emds
 protected Cmd(EncogAnalyst theAnalyst)
 {
     this._x554f16462d8d4675 = theAnalyst;
     this._x594135906c55045c = this._x554f16462d8d4675.Script;
     this._xe11545499171cc05 = this._x594135906c55045c.Properties;
 }