Ejemplo n.º 1
0
 public Interactive(int _logt, TerminationOption _topt, int _mcnt, double?_terr)
     : base(_logt, _topt, _mcnt, _terr)
 {
     // abort if not default setting
     if ((_logt != 1) || (_topt != TerminationOption.ByIterations) || (_mcnt != 0) || (_terr != null))
     {
         throw new Exception();
     }
 }
Ejemplo n.º 2
0
 public Algorithm(int _logt, TerminationOption _topt, int _mcnt, double?_terr)
     : base(_logt, _topt, _mcnt, _terr)
 {
 }