コード例 #1
0
ファイル: MLRModel2.cs プロジェクト: ninalinzhiyun/VB3
 public static MLRModel getMLRModel()
 {
     if (_model == null)
     {
         _model = new MLRModel(/* "temp" */);
     }
     return(_model);
 }
コード例 #2
0
ファイル: MLRModel2.cs プロジェクト: ninalinzhiyun/VB3
 public static void setMLRModel(MLRModel m)
 {
     _model = m;
 }
コード例 #3
0
ファイル: MLRModel2.cs プロジェクト: ninalinzhiyun/VB3
 public static MLRModel intMLRModel()
 {
     _model = null;
     return(_model);
 }