1

When I interrupt my proof, which has gone out to lunch, I see quick-and-dirty-subsumption-replacement-step in the backtrace. How do I disable that heuristic?

interestedparty333
  • 2,386
  • 1
  • 21
  • 35

1 Answers1

1

Try your proof again after admitting the following two forms:

(defun quick-and-dirty-srs-off (cl1 ac)
  (declare (ignore cl1 ac)
           (xargs :mode :logic :guard t))
  nil)

(defattach quick-and-dirty-srs quick-and-dirty-srs-off)
interestedparty333
  • 2,386
  • 1
  • 21
  • 35