mirror of
https://github.com/YosysHQ/yosys
synced 2026-03-09 23:00:32 +00:00
Fix help message for equiv passes
This commit is contained in:
parent
1d3f9b7905
commit
b7d013e6bf
2 changed files with 2 additions and 2 deletions
|
|
@ -174,7 +174,7 @@ struct EquivInductPass : public Pass {
|
|||
log("Only selected $equiv cells are proven and only selected cells are used to\n");
|
||||
log("perform the proof.\n");
|
||||
log("\n");
|
||||
EquivBasicConfig::help("4");
|
||||
log("%s", EquivBasicConfig::help("4"));
|
||||
log("\n");
|
||||
log("This command is very effective in proving complex sequential circuits, when\n");
|
||||
log("the internal state of the circuit quickly propagates to $equiv cells.\n");
|
||||
|
|
|
|||
|
|
@ -428,7 +428,7 @@ struct EquivSimplePass : public Pass {
|
|||
log("\n");
|
||||
log("This command tries to prove $equiv cells using a simple direct SAT approach.\n");
|
||||
log("\n");
|
||||
EquivSimpleConfig::help("1");
|
||||
log("%s", EquivSimpleConfig::help("1"));
|
||||
log("\n");
|
||||
}
|
||||
void execute(std::vector<std::string> args, Design *design) override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue