main.cpp 236 B

123456789101112
  1. #include "monoid.hpp"
  2. #include "braids.hpp"
  3. #include <list>
  4. using namespace std;
  5. int main(){
  6. Generator x=generator(4,3);
  7. cout<<generator(1,3)<<endl;
  8. cout<<generator(2,3)<<endl;
  9. cout<<(int)get_i(x)<<','<<(int)get_j(x)<<endl;
  10. }