Open jaritaes99 opened 3 years ago
sage_efficient_invariants = [Graph.number_of_loops, Graph.density, Graph.order, Graph.size, Graph.average_degree, Graph.triangles_count, Graph.szeged_index, Graph.radius, Graph.diameter, Graph.girth, Graph.wiener_index, Graph.average_distance, Graph.connected_components_number, Graph.maximum_average_degree, lovasz_theta, Graph.spanning_trees_count, Graph.odd_girth, Graph.clustering_average, Graph.cluster_transitivity]
is giving an error because lovasz_theta is not defined until later in the code, could it be moved to before the list in invariants?
deleted lovasz_theta from the list for now
sage_efficient_invariants = [Graph.number_of_loops, Graph.density, Graph.order, Graph.size, Graph.average_degree, Graph.triangles_count, Graph.szeged_index, Graph.radius, Graph.diameter, Graph.girth, Graph.wiener_index, Graph.average_distance, Graph.connected_components_number, Graph.maximum_average_degree, lovasz_theta, Graph.spanning_trees_count, Graph.odd_girth, Graph.clustering_average, Graph.cluster_transitivity]
is giving an error because lovasz_theta is not defined until later in the code, could it be moved to before the list in invariants?