예제 #1
0
 public CP949Prober()
 {
     codingSM = new CodingStateMachine(new CP949SMModel());
     // NOTE: CP949 is a superset of EUC-KR, so the distribution should be
     //       not different.
     distributionAnalyser = new EUCKRDistributionAnalyser();
     Reset();
 }
예제 #2
0
 public EUCKRProber()
 {
     codingSM             = new CodingStateMachine(new EUCKRSMModel());
     distributionAnalyser = new EUCKRDistributionAnalyser();
     Reset();
 }