Forum Discussion
ak6dn
Regular Contributor
6 years agoQuartus does a LOT of logic optimization. How can you say it 'does not do any optimization/minimization'? That is NOT my experience at all.
Logic functions (like A or not A) will be reduced to constants and folded into the equations. Logic that generates unused functions will be eliminated.
So I completely disagree with your statement.
- AYoun226 years ago
New Contributor
i cannot agree:
module infer (
output wire q,
input wire a, b
);
assign q = (a & ~b) | (a & b);
endmodule
q in this equation should = a, but here is the net schematic: