Skip to content

Commit

Permalink
Added a missing change from a header.
Browse files Browse the repository at this point in the history
  • Loading branch information
Xazax-hun committed Dec 24, 2023
1 parent 11a8b1e commit 8016caa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ast/analysis/Aggregate.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ std::set<std::string> getVariablesOutsideAggregate(const Clause& clause, const A
* Find a new relation name. I use this when I create new relations either for
* aggregate bodies or singleton aggregates.
**/
std::string findUniqueRelationName(const Program& program, std::string base);
std::string findUniqueRelationName(const Program& program, const std::string& base);
/**
* Find a variable name using base to form a string like base1
* Use this when you need to limit the scope of a variable to the inside of an aggregate.
**/
std::string findUniqueVariableName(const Clause& clause, std::string base);
std::string findUniqueVariableName(const Clause& clause, const std::string& base);
/**
* Given an aggregate and a clause, we find all the variables that have been
* injected into the aggregate.
Expand Down

0 comments on commit 8016caa

Please sign in to comment.