3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-01-19 00:38:59 +00:00

verific: add support for relaxed checking option in VerificPass

This commit is contained in:
Dhaval Chaudhari 2026-01-02 17:45:21 +05:30
parent 8101c87fab
commit 2b97f19792

View file

@ -3688,6 +3688,10 @@ struct VerificPass : public Pass {
veri_file::AddLOption(args[++argidx].c_str());
continue;
}
if (args[argidx] == "-set_relaxed_checking") {
VeriNode::SetRelaxedChecking(0);
continue;
}
#endif
break;
}