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); }
void hmm::load_table(const char* aname){ cout << "Hmm: loading a table not implemented.\n"; abort(); ifstream anamefile(aname); probs.readJumps(anamefile); }