Closed RenatoGeh closed 3 years ago
Merging #97 (49730de) into master (bd48e34) will decrease coverage by
0.03%
. The diff coverage is100.00%
.
@@ Coverage Diff @@
## master #97 +/- ##
==========================================
- Coverage 88.11% 88.08% -0.04%
==========================================
Files 31 31
Lines 3198 3198
==========================================
- Hits 2818 2817 -1
- Misses 380 381 +1
Impacted Files | Coverage Δ | |
---|---|---|
src/LoadSave/circuit_loaders.jl | 99.44% <100.00%> (ø) |
|
src/transformations.jl | 95.81% <0.00%> (-0.33%) |
:arrow_down: |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update bd48e34...49730de. Read the comment docs.
Thanks, this should be good.
Hi,
This patch allows empty lines in CNF files. Previously, LogicCircuits would complain when a CNF had empty lines, even trailing ones like the one in the example below:
Since file format specifications for
.cnf
(and.dnf
) don't specify that empty lines are disallowed, this patch removes such a requirement.I considered having this patch as part of #96, but I didn't know whether this PR in particular would be accepted, so sending this out as separate. Sorry for the spam :)
Thanks!