File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
matching/src/main/scala/org/kframework/backend/llvm/matching Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -768,9 +768,10 @@ class Matrix private (
768
768
// check that all occurrences of the same variable are equal
769
769
val sc = row.clause.action.scVars match {
770
770
// if there is no side condition, continue
771
- case None => atomicLeaf
771
+ case None => atomicLeaf
772
772
case Some (cond) =>
773
- // if there is a side condition but not all occurrences of the same variable are equal, continue
773
+ // if there is a side condition but not all occurrences of the same variable are equal,
774
+ // continue
774
775
if (nonlinear.nonEmpty) return nonlinearLeaf
775
776
val condVars = cond.map(v => (grouped(v).head._2, grouped(v).head._1.hookAtt))
776
777
val newO = SC (row.clause.action.ordinal)
You can’t perform that action at this time.
0 commit comments