Re: How do simulating termination analyzers work? (in C and C++)

Liste des GroupesRevenir à cl c++ 
Sujet : Re: How do simulating termination analyzers work? (in C and C++)
De : Bonita.Montero (at) *nospam* gmail.com (Bonita Montero)
Groupes : comp.lang.c comp.lang.c++
Date : 18. Jun 2025, 15:47:22
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <102ujho$36dcq$1@raubtier-asyl.eternal-september.org>
References : 1 2 3 4 5
User-Agent : Mozilla Thunderbird
Am 18.06.2025 um 16:43 schrieb olcott:
On 6/18/2025 6:57 AM, Bonita Montero wrote:
Am 18.06.2025 um 06:04 schrieb olcott:
On 6/17/2025 9:49 PM, Bonita Montero wrote:
Am 18.06.2025 um 01:24 schrieb olcott:
void Infinite_Recursion()
{
   Infinite_Recursion();
   return;
  }
>
void Infinite_Loop()
  {
   HERE: goto HERE;
   return;
  }
>
void DDD()
  {
   HHH(DDD);
   return;
  }
>
When it is understood that HHH does simulate itself
simulating DDD then any first year CS student knows
that when each of the above are correctly simulated
by HHH that none of them ever stop running unless aborted.
(recursive simulation is similar to infinite recursion).
>
The same thing equally applies to these two, yet they may
be  too difficult for a first year CS student.
>
int Sipser_D()
  {
   if (HHH(Sipser_D) == 1)
     return 0;
   return 1;
}
>
int DD()
  {
   int Halt_Status = HHH(DD);
   if (Halt_Status)
     HERE: goto HERE;
   return Halt_Status;
  }
>
*Fully operational code*
https://github.com/plolcott/x86utm/blob/master/Halt7.c
>
>
Youre off-topic. That's not comp.theory here.
>
>
I am *ONLY* talking about the C/C++ programming
aspects of this. ..
>
Absolutely not, that's generic to any language.
>
 I am talking about the (C/C++) computer programming aspects
of this. I am not taking about the computer science aspects
of this. People on comp.theory don't have the programming
skill to understand this.
 
No, you didn't. Stick with comp.theory.

Date Sujet#  Auteur
18 Jun 25 * How do simulating termination analyzers work? (in C and C++)24olcott
18 Jun 25 +* Re: How do simulating termination analyzers work? (in C and C++)5Bonita Montero
18 Jun 25 i`* Re: How do simulating termination analyzers work? (in C and C++)4olcott
18 Jun 25 i `* Re: How do simulating termination analyzers work? (in C and C++)3Bonita Montero
18 Jun 25 i  `* Re: How do simulating termination analyzers work? (in C and C++)2olcott
18 Jun 25 i   `- Re: How do simulating termination analyzers work? (in C and C++)1Bonita Montero
18 Jun 25 `* Re: How do simulating termination analyzers work? (in C and C++)18olcott
18 Jun 25  `* Re: How do simulating termination analyzers work? (in C and C++)17Bonita Montero
18 Jun 25   +- Re: How do simulating termination analyzers work? (in C and C++)1olcott
18 Jun 25   `* Re: How do simulating termination analyzers work? (in C and C++)15Chris M. Thomasson
19 Jun 25    `* Re: How do simulating termination analyzers work? (in C and C++)14olcott
19 Jun 25     `* Re: How do simulating termination analyzers work? (in C and C++)13Bonita Montero
19 Jun 25      `* Re: How do simulating termination analyzers work? (in C and C++)12olcott
19 Jun 25       `* Re: How do simulating termination analyzers work? (in C and C++)11Bonita Montero
19 Jun 25        `* Re: How do simulating termination analyzers work? (in C and C++)10olcott
19 Jun 25         `* Re: How do simulating termination analyzers work? (in C and C++)9Bonita Montero
19 Jun 25          `* Re: How do simulating termination analyzers work? (in C and C++)8olcott
19 Jun 25           `* Re: How do simulating termination analyzers work? (in C and C++)7Bonita Montero
19 Jun 25            `* Re: How do simulating termination analyzers work? (in C and C++)6olcott
19 Jun 25             `* Re: How do simulating termination analyzers work? (in C and C++)5Bonita Montero
19 Jun 25              `* Re: How do simulating termination analyzers work? (in C and C++)4olcott
19 Jun 25               `* Re: How do simulating termination analyzers work? (in C and C++)3Kaz Kylheku
19 Jun 25                +- Re: How do simulating termination analyzers work? (in C and C++) --- Kaz1olcott
20 Jun 25                `- Re: How do simulating termination analyzers work? (in C and C++) --- Kaz1olcott

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal