|
14 | 14 | import sage.graphs.partial_cube |
15 | 15 | from . import graph_list as graphs_list |
16 | 16 | lazy_import("sage.graphs", "graph_coloring") |
17 | | -lazy_import("sage.graphs.cliquer", ['all_max_clique', 'max_clique', |
18 | | - 'clique_number'], |
19 | | - deprecation=26200) |
20 | 17 | from .graph_database import graph_db_info |
21 | 18 | lazy_import("sage.graphs.graph_editor", "graph_editor") |
22 | 19 |
|
|
35 | 32 | sage.graphs.cliquer are deprecated from the global namespace (:trac:`26200`):: |
36 | 33 |
|
37 | 34 | sage: all_max_clique(Graph()) |
38 | | - doctest:...: DeprecationWarning: Importing all_max_clique from here is deprecated. If you need to use it, please import it directly from sage.graphs.cliquer |
39 | | - See https://trac.sagemath.org/26200 for details. |
40 | | - [[]] |
| 35 | + Traceback (most recent call last): |
| 36 | + ... |
| 37 | + NameError: name 'all_max_clique' is not defined |
41 | 38 | sage: max_clique(Graph()) |
42 | | - doctest:...: DeprecationWarning: Importing max_clique from here is deprecated. If you need to use it, please import it directly from sage.graphs.cliquer |
43 | | - See https://trac.sagemath.org/26200 for details. |
44 | | - [] |
| 39 | + Traceback (most recent call last): |
| 40 | + ... |
| 41 | + NameError: name 'max_clique' is not defined |
45 | 42 | sage: clique_number(Graph()) |
46 | | - doctest:...: DeprecationWarning: Importing clique_number from here is deprecated. If you need to use it, please import it directly from sage.graphs.cliquer |
47 | | - See https://trac.sagemath.org/26200 for details. |
48 | | - 0 |
| 43 | + Traceback (most recent call last): |
| 44 | + ... |
| 45 | + NameError: name 'clique_number' is not defined |
49 | 46 | """ |
0 commit comments