Skip to content

Commit

Permalink
minor function fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DillonZChen committed Jan 17, 2025
1 parent 9f9b631 commit 273513d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/feature_generation/features.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ namespace feature_generation {
int get_n_seen_nodes() const { return n_seen_nodes; }
int get_n_seen_edges() const { return n_seen_edges; }
int get_n_seen_initial_colours() const { return seen_initial_colours.size(); }
int get_n_seen_refined_colours() const { return (int)colour_hash.size(); }
int get_n_seen_refined_colours() const { return get_n_features(); }
std::vector<long> get_layer_to_n_colours() const;
void print_init_colours() const;

Expand Down

0 comments on commit 273513d

Please sign in to comment.