Sujet : Re: Can D simulated by H terminate normally? Message_ID Provided V2
De : polcott333 (at) *nospam* gmail.com (olcott)
Groupes : comp.theory sci.logicDate : 20. May 2024, 16:23:16
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <v2fpt4$1pfh$6@dont-email.me>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
User-Agent : Mozilla Thunderbird
On 5/20/2024 6:31 AM, immibis wrote:
On 20/05/24 05:11, Richard Damon wrote:
Nope. Make a claim, you need to prove it.
You just made a claim. Prove that he needs to prove it.
I cannot prove verified facts to liars or to people having insufficient
knowledge of the semantics of the C programming language.
The halt status of the following C functions is entirely self-evident
to anyone having sufficient knowledge of the semantics of the C
programming language.
void Infinite_Recursion(u32 N)
{
Infinite_Recursion(N);
}
int factorial(int n) // called with 5
{
if (n >= 1)
return n*factorial(n-1);
else
return 1;
}
void Infinite_Loop()
{
HERE: goto HERE;
}
void This_Halts()
{
return;
}
-- Copyright 2024 Olcott "Talent hits a target no one else can hit; Geniushits a target no one else can see." Arthur Schopenhauer