|
17 | 17 | // |
18 | 18 |
|
19 | 19 | // libsemigroups headers |
| 20 | +#include <libsemigroups/dot.hpp> |
20 | 21 | #include <libsemigroups/froidure-pin-base.hpp> |
21 | 22 |
|
22 | 23 | // pybind11.... |
@@ -528,6 +529,164 @@ Returns the position of the suffix of the element ``x`` in position *pos* |
528 | 529 | py::options options; |
529 | 530 | options.disable_function_signatures(); |
530 | 531 |
|
| 532 | + m.def("froidure_pin_dot_current_right_cayley_graph", |
| 533 | + py::overload_cast<FroidurePinBase const&>( |
| 534 | + &froidure_pin::dot_current_right_cayley_graph), |
| 535 | + py::arg("fp"), |
| 536 | + R"pbdoc( |
| 537 | +:sig=(fp: FroidurePin) -> Dot: |
| 538 | +
|
| 539 | +Returns a :any:`Dot` object representing the current right Cayley graph. |
| 540 | +
|
| 541 | +This function does not trigger a full enumeration of *fp*. |
| 542 | +
|
| 543 | +:param fp: the :any:`FroidurePin` object. |
| 544 | +:type fp: FroidurePin |
| 545 | +
|
| 546 | +:returns: A :any:`Dot` object. |
| 547 | +:rtype: Dot |
| 548 | +)pbdoc"); |
| 549 | + |
| 550 | + m.def("froidure_pin_dot_current_right_cayley_graph", |
| 551 | + py::overload_cast<FroidurePinBase const&, std::string const&>( |
| 552 | + &froidure_pin::dot_current_right_cayley_graph), |
| 553 | + py::arg("fp"), |
| 554 | + py::arg("gen_names"), |
| 555 | + R"pbdoc( |
| 556 | +:sig=(fp: FroidurePin, gen_names: str) -> Dot: |
| 557 | +
|
| 558 | +Returns a :any:`Dot` object representing the current right Cayley graph. |
| 559 | +
|
| 560 | +The generators are labelled using the characters in *gen_names*. |
| 561 | +
|
| 562 | +:param fp: the :any:`FroidurePin` object. |
| 563 | +:type fp: FroidurePin |
| 564 | +:param gen_names: the labels for the generators. |
| 565 | +:type gen_names: str |
| 566 | +
|
| 567 | +:returns: A :any:`Dot` object. |
| 568 | +:rtype: Dot |
| 569 | +)pbdoc"); |
| 570 | + |
| 571 | + m.def("froidure_pin_dot_right_cayley_graph", |
| 572 | + py::overload_cast<FroidurePinBase&>( |
| 573 | + &froidure_pin::dot_right_cayley_graph), |
| 574 | + py::arg("fp"), |
| 575 | + R"pbdoc( |
| 576 | +:sig=(fp: FroidurePin) -> Dot: |
| 577 | +
|
| 578 | +Returns a :any:`Dot` object representing the right Cayley graph. |
| 579 | +
|
| 580 | +This function triggers a full enumeration of *fp*. |
| 581 | +
|
| 582 | +:param fp: the :any:`FroidurePin` object. |
| 583 | +:type fp: FroidurePin |
| 584 | +
|
| 585 | +:returns: A :any:`Dot` object. |
| 586 | +:rtype: Dot |
| 587 | +)pbdoc"); |
| 588 | + |
| 589 | + m.def("froidure_pin_dot_right_cayley_graph", |
| 590 | + py::overload_cast<FroidurePinBase&, std::string const&>( |
| 591 | + &froidure_pin::dot_right_cayley_graph), |
| 592 | + py::arg("fp"), |
| 593 | + py::arg("gen_names"), |
| 594 | + R"pbdoc( |
| 595 | +:sig=(fp: FroidurePin, gen_names: str) -> Dot: |
| 596 | +
|
| 597 | +Returns a :any:`Dot` object representing the right Cayley graph. |
| 598 | +
|
| 599 | +This function triggers a full enumeration of *fp*. The generators are labelled |
| 600 | +using the characters in *gen_names*. |
| 601 | +
|
| 602 | +:param fp: the :any:`FroidurePin` object. |
| 603 | +:type fp: FroidurePin |
| 604 | +:param gen_names: the labels for the generators. |
| 605 | +:type gen_names: str |
| 606 | +
|
| 607 | +:returns: A :any:`Dot` object. |
| 608 | +:rtype: Dot |
| 609 | +)pbdoc"); |
| 610 | + |
| 611 | + m.def("froidure_pin_dot_current_left_cayley_graph", |
| 612 | + py::overload_cast<FroidurePinBase const&>( |
| 613 | + &froidure_pin::dot_current_left_cayley_graph), |
| 614 | + py::arg("fp"), |
| 615 | + R"pbdoc( |
| 616 | +:sig=(fp: FroidurePin) -> Dot: |
| 617 | +
|
| 618 | +Returns a :any:`Dot` object representing the current left Cayley graph. |
| 619 | +
|
| 620 | +This function does not trigger a full enumeration of *fp*. |
| 621 | +
|
| 622 | +:param fp: the :any:`FroidurePin` object. |
| 623 | +:type fp: FroidurePin |
| 624 | +
|
| 625 | +:returns: A :any:`Dot` object. |
| 626 | +:rtype: Dot |
| 627 | +)pbdoc"); |
| 628 | + |
| 629 | + m.def("froidure_pin_dot_current_left_cayley_graph", |
| 630 | + py::overload_cast<FroidurePinBase const&, std::string const&>( |
| 631 | + &froidure_pin::dot_current_left_cayley_graph), |
| 632 | + py::arg("fp"), |
| 633 | + py::arg("gen_names"), |
| 634 | + R"pbdoc( |
| 635 | +:sig=(fp: FroidurePin, gen_names: str) -> Dot: |
| 636 | +
|
| 637 | +Returns a :any:`Dot` object representing the current left Cayley graph. |
| 638 | +
|
| 639 | +The generators are labelled using the characters in *gen_names*. |
| 640 | +
|
| 641 | +:param fp: the :any:`FroidurePin` object. |
| 642 | +:type fp: FroidurePin |
| 643 | +:param gen_names: the labels for the generators. |
| 644 | +:type gen_names: str |
| 645 | +
|
| 646 | +:returns: A :any:`Dot` object. |
| 647 | +:rtype: Dot |
| 648 | +)pbdoc"); |
| 649 | + |
| 650 | + m.def("froidure_pin_dot_left_cayley_graph", |
| 651 | + py::overload_cast<FroidurePinBase&>( |
| 652 | + &froidure_pin::dot_left_cayley_graph), |
| 653 | + py::arg("fp"), |
| 654 | + R"pbdoc( |
| 655 | +:sig=(fp: FroidurePin) -> Dot: |
| 656 | +
|
| 657 | +Returns a :any:`Dot` object representing the left Cayley graph. |
| 658 | +
|
| 659 | +This function triggers a full enumeration of *fp*. |
| 660 | +
|
| 661 | +:param fp: the :any:`FroidurePin` object. |
| 662 | +:type fp: FroidurePin |
| 663 | +
|
| 664 | +:returns: A :any:`Dot` object. |
| 665 | +:rtype: Dot |
| 666 | +)pbdoc"); |
| 667 | + |
| 668 | + m.def("froidure_pin_dot_left_cayley_graph", |
| 669 | + py::overload_cast<FroidurePinBase&, std::string const&>( |
| 670 | + &froidure_pin::dot_left_cayley_graph), |
| 671 | + py::arg("fp"), |
| 672 | + py::arg("gen_names"), |
| 673 | + R"pbdoc( |
| 674 | +:sig=(fp: FroidurePin, gen_names: str) -> Dot: |
| 675 | +
|
| 676 | +Returns a :any:`Dot` object representing the left Cayley graph. |
| 677 | +
|
| 678 | +This function triggers a full enumeration of *fp*. The generators are labelled |
| 679 | +using the characters in *gen_names*. |
| 680 | +
|
| 681 | +:param fp: the :any:`FroidurePin` object. |
| 682 | +:type fp: FroidurePin |
| 683 | +:param gen_names: the labels for the generators. |
| 684 | +:type gen_names: str |
| 685 | +
|
| 686 | +:returns: A :any:`Dot` object. |
| 687 | +:rtype: Dot |
| 688 | +)pbdoc"); |
| 689 | + |
531 | 690 | m.def("froidure_pin_product_by_reduction", |
532 | 691 | &froidure_pin::product_by_reduction, |
533 | 692 | py::arg("fp"), |
|
0 commit comments