Retrieve the solver decision trail. Remarks: This retrieves the trail of decisions made by the solver after a check call. The trail represents the sequence of Boolean literals (decisions and propagations) in the order they were assigned. @return An array of Boolean expressions representing
()
| 375 | * @throws Z3Exception |
| 376 | **/ |
| 377 | public BoolExpr[] getTrail() |
| 378 | { |
| 379 | ASTVector trail = new ASTVector(getContext(), Native.solverGetTrail(getContext().nCtx(), getNativeObject())); |
| 380 | return trail.ToBoolExprArray(); |
| 381 | } |
| 382 | |
| 383 | /** |
| 384 | * A brief justification of why the last call to {@code Check} returned |
nothing calls this directly
no test coverage detected