No increment line_count for binary ANDs

This commit is contained in:
Eddie Hung 2019-02-11 13:24:21 -08:00
parent bb4164481d
commit 727ba52504
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ void AigerReader::parse_aiger_ascii()
std::getline(f, line); // Ignore up to start of next line std::getline(f, line); // Ignore up to start of next line
// Parse AND // Parse AND
for (unsigned i = 0; i < A; ++i, ++line_count) { for (unsigned i = 0; i < A; ++i) {
if (!(f >> l1 >> l2 >> l3)) if (!(f >> l1 >> l2 >> l3))
log_error("Line %u cannot be interpreted as an AND!\n", line_count); log_error("Line %u cannot be interpreted as an AND!\n", line_count);