Interrupt() public méthode

Interrupt the execution of a Z3 procedure.
This procedure can be used to interrupt: solvers, simplifiers and tactics.
public Interrupt ( ) : void
Résultat void
Exemple #1
0
 /// <summary>
 /// Starts the abort worker. The worker checks the abort method
 /// periodically until either it is stopped by a call to the Stop()
 /// method or it gets an abort signal. In the latter case it will
 /// issue a soft abort signal to Z3.
 /// </summary>
 public void Start()
 {
     // We go until someone stops us
     _stop = false;
     while (!_stop && !_QueryAbortFunction())
     {
         // Wait for a while
         Thread.Sleep(10);
     }
     // If we were stopped on abort, cancel z3
     if (!_stop)
     {
         _context.Interrupt();
         _aborted = true;
     }
 }