Skip to content

Commit 9de521b

Browse files
committed
fix seq calls
1 parent 326e007 commit 9de521b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mine/generator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ void Generator::fixSingularities(Program &p) {
177177

178178
void Generator::fixCalls(Program &p) {
179179
for (auto &op : p.ops) {
180-
if (op.type == Operation::Type::SEQ) {
180+
if (op.type != Operation::Type::SEQ) {
181181
continue;
182182
}
183183
bool reset = false;

0 commit comments

Comments
 (0)