We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f6d585e + 52cf309 commit 7def999Copy full SHA for 7def999
flow/settings.mk
@@ -1 +1,5 @@
1
-export LEC_CHECK ?= 1
+# Enable LEC (Logical Equivalence Check) only if kepler-formal is installed.
2
+# kepler-formal is primarily an OpenROAD/ORFS developer tool, not an end-user
3
+# tool. End-users would typically run LEC transactionally at project completion,
4
+# not in every CI run where it wastes CI time.
5
+export LEC_CHECK ?= $(if $(wildcard $(KEPLER_FORMAL_EXE)),1,0)
0 commit comments