Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个使用 sage 运行的 .spyx 文件。
我有这个:
from sage.all import *
它一直在处理内置的 sage 函数,例如:complement()、clique_number() 和 graph()。但是,它绝对不能识别chromatic_number(),即使它是 sage 库包的一部分。
我也试过:
from sage.graphs import *
这是多余的,并且不起作用。
我该怎么办?