public CSpanInitialBeh(double Shallow, double Deep)
 {
     m_behTrans = new CInitBehaviorMatrix();
     Setup(Shallow, Deep, MBSDEFAULTS.BEHAVIOR_INITIAL_MATRIX);
 }
 public CSpanInitialBeh(double Shallow, double Deep, CInitBehaviorMatrix InitBehMatrix)
 {
     m_behTrans = new CInitBehaviorMatrix();
     Setup(Shallow, Deep, InitBehMatrix.matrix.a);
 }
 public CSpanInitialBeh()
 {
     m_behTrans = new CInitBehaviorMatrix();
     Setup(0, 0, MBSDEFAULTS.BEHAVIOR_INITIAL_MATRIX);
 }