You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The analysis produces a test harness which is incomplete and cannot be linked against the original program. This is due to the way the analysis works: as main is the entry point, nevercalled will never be executed and thus the nondeterministic call to nondet2 is not part of the counterexample, so it is not part of the trace. However, it should be part of the generated test harness, otherwise we will not be able to compile it and link it against the original program.
The text was updated successfully, but these errors were encountered:
Consider the following code:
The analysis produces a test harness which is incomplete and cannot be linked against the original program. This is due to the way the analysis works: as
main
is the entry point,nevercalled
will never be executed and thus the nondeterministic call tonondet2
is not part of the counterexample, so it is not part of the trace. However, it should be part of the generated test harness, otherwise we will not be able to compile it and link it against the original program.The text was updated successfully, but these errors were encountered: