1

Is it legal to call Interrupt on a Z3 Context with the managed API when that context is idle (i.e. no solvers are running)?

usr
  • 168,620
  • 35
  • 240
  • 369

1 Answers1

1

Yes. The following code succeeds:

var context = new Context();
context.Interrupt();
usr
  • 168,620
  • 35
  • 240
  • 369