Deutsch   English   Français   Italiano  
<473a9a152c792a48c83eea569551035994c9d04f@i2pn2.org>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!news.misty.com!weretis.net!feeder9.news.weretis.net!news.nk.ca!rocksolid2!i2pn2.org!.POSTED!not-for-mail
From: Richard Damon <richard@damon-family.org>
Newsgroups: comp.theory
Subject: Re: Every sufficiently competent C programmer knows
Date: Mon, 10 Mar 2025 22:21:07 -0400
Organization: i2pn2 (i2pn.org)
Message-ID: <473a9a152c792a48c83eea569551035994c9d04f@i2pn2.org>
References: <vqntaq$1jut5$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Tue, 11 Mar 2025 02:21:07 -0000 (UTC)
Injection-Info: i2pn2.org;
	logging-data="3813142"; mail-complaints-to="usenet@i2pn2.org";
	posting-account="diqKR1lalukngNWEqoq9/uFtbkm5U+w3w6FQ0yesrXg";
User-Agent: Mozilla Thunderbird
Content-Language: en-US
X-Spam-Checker-Version: SpamAssassin 4.0.0
In-Reply-To: <vqntaq$1jut5$1@dont-email.me>
Bytes: 2477
Lines: 55

On 3/10/25 7:41 PM, olcott wrote:
> typedef void (*ptr)();
> int HHH(ptr P);
> 
> void Infinite_Loop()
> {
>    HERE: goto HERE;
>    return;
> }
> 
> void Infinite_Recursion()
> {
>    Infinite_Recursion();
>    return;
> }
> 
> void DDD()
> {
>    HHH(DDD);
>    return;
> }
> 
> int DD()
> {
>    int Halt_Status = HHH(DD);
>    if (Halt_Status)
>      HERE: goto HERE;
>    return Halt_Status;
> }
> 
> That when HHH correctly emulates N steps of the
> above functions that none of these functions can
> possibly reach their own "return" instruction
> and terminate normally.
> 
> Since HHH does see that same pattern that competent
> C programmers see it correctly aborts its emulation
> and rejects these inputs as non terminating.
> 

Problem: DD Isn't a program, and if you try to compile it, you will get 
an undiefined symbol HHH.

That HHH can correct emulate N steps, that go past the "HHH(DD)" 
statement says that HHH is not correctly simulating the "program" given 
to it and inventing behavior.

Note, since you just defined the HHH DOES just emulate N steps and 
returns the value 0, says that when we pair this DD with that HHH to 
complete the program, we see that the actual behavior of DD will reach 
that final return, just not in the PARTIAL emulation it did.

Thus we see that Peter Olcott, who claims it is obvious that this 
doesn't happen is just an lying idiot.

Sorry, you are just showing that your logic is based on FRAUD and ERROR.