init_files.cpp 335 B

1234567891011121314
  1. #include "walk.hpp"
  2. int main(){
  3. cout<<"****************************************"<<endl;
  4. cout<<"* Create files for ordinary semigroups *"<<endl;
  5. cout<<"****************************************"<<endl;
  6. Semigroup O;
  7. O.init_N();
  8. int m=1;
  9. do{
  10. O.to_file("todo/"+to_string(m));
  11. O.son(O,m++,0);
  12. }while(O.g<g_max);
  13. }