Liste des Groupes | Revenir à theory |
On 2025-06-17 20:34:11 +0000, olcott said:*HHH is a simulating termination analyzer*
void Infinite_Recursion()Considering the scope of termination analysis the above examples are
{
Infinite_Recursion();
return;
}
>
void Infinite_Loop()
{
HERE: goto HERE;
return;
}
>
void DDD()
{
HHH(DDD);
return;
}
extremely simple. The first two are easily seen as non-terminating.
The third example is incomplete as HHH is not given.
Much of both usefulness and difficulty of termination analysis follows--
from termination analyzers ignorance of the input to the program to
be analyzed. The above exmples take no input, except perhaps the last
one where HHH might read some, which significantly simplifies their
analysis.
Les messages affichés proviennent d'usenet.