I have a .spyx file that i'm running with using sage.
I have this:
from sage.all import *
which has been handling built-in sage functions like: complement(), clique_number(), and graph(). BUT, it absolutely does not recognize chromatic_number(), even thought it is part of the sage library package.
I have also tried:
from sage.graphs import *
Which is redundant, and not working.
What do I do?