We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 626b771 commit 069846eCopy full SHA for 069846e
qpandalite/originir/originir_line_parser.py
@@ -238,7 +238,7 @@ def handle_2q1p(line):
238
239
@staticmethod
240
def handle_2q3p(line):
241
- matches = OriginIR_LineParser.regexp_2q1p.match(line)
+ matches = OriginIR_LineParser.regexp_2q3p.match(line)
242
operation = matches.group(1)
243
q1 = int(matches.group(2))
244
q2 = int(matches.group(3))
@@ -249,7 +249,7 @@ def handle_2q3p(line):
249
250
251
def handle_2q15p(line):
252
+ matches = OriginIR_LineParser.regexp_2q15p.match(line)
253
254
255
0 commit comments