// reprint a regularizer from stdin to stdout // (useful for checking syntax of input or standardizing format) // #include "all-reg.h" #include "Alphabet/Alph.h" #include main() { Alph::set_default(Alph::ExtAA()); Regularizer *r = Regularizer::read_new(cin); if (r) { r->normalize(); cout << *r; } }