Esempio n. 1
0
void HMM::load_table(const char* filename) {
  cout << "Hmm: loading a table not implemented.\n";
  // TODO: is this correct?
  abort();
  ifstream anamefile(filename);
  probs.readJumps(anamefile);
}
Esempio n. 2
0
void hmm::load_table(const char* aname){
  cout << "Hmm: loading a table not implemented.\n";
  abort();
  ifstream anamefile(aname);
  probs.readJumps(anamefile);
}