File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -764,7 +764,7 @@ template <typename ... RULE_TYPEs, typename... RELATIONs>
764
764
void applyRuleSet (
765
765
size_t iteration,
766
766
typename State<RELATIONs...>::StateSizesType& stateSizeDelta,
767
- RuleSet<RULE_TYPEs...> &ruleSet,
767
+ const RuleSet<RULE_TYPEs...> &ruleSet,
768
768
State<RELATIONs...> &state
769
769
) {
770
770
// compute new state
@@ -781,7 +781,7 @@ void applyRuleSet(
781
781
}
782
782
783
783
template <typename ... RULE_TYPEs, typename ... RELATIONs>
784
- State<RELATIONs...> fixPoint (RuleSet<RULE_TYPEs...> &ruleSet, const State<RELATIONs...> &state) {
784
+ State<RELATIONs...> fixPoint (const RuleSet<RULE_TYPEs...> &ruleSet, const State<RELATIONs...> &state) {
785
785
typedef State<RELATIONs...> StateType;
786
786
StateType newState{state};
787
787
typename State<RELATIONs...>::StateSizesType stateSizeDelta;
You can’t perform that action at this time.
0 commit comments