Re: How do simulating termination analyzers work?

Liste des GroupesRevenir à theory 
Sujet : Re: How do simulating termination analyzers work?
De : polcott333 (at) *nospam* gmail.com (olcott)
Groupes : comp.theory
Date : 01. Jul 2025, 14:02:17
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <1040m8p$2rp6n$1@dont-email.me>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
User-Agent : Mozilla Thunderbird
On 6/30/2025 4:58 AM, Mikko wrote:
On 2025-06-29 14:21:55 +0000, olcott said:
 
On 6/29/2025 3:44 AM, Mikko wrote:
On 2025-06-28 13:17:17 +0000, olcott said:
>
On 6/28/2025 6:41 AM, Mikko wrote:
On 2025-06-21 17:34:55 +0000, olcott said:
>
On 6/21/2025 4:52 AM, Mikko wrote:
On 2025-06-20 13:59:02 +0000, olcott said:
>
On 6/20/2025 4:20 AM, Fred. Zwarts wrote:
Op 19.jun.2025 om 17:17 schreef olcott:
On 6/19/2025 4:21 AM, Fred. Zwarts wrote:
Op 18.jun.2025 om 15:46 schreef olcott:
On 6/18/2025 5:12 AM, Fred. Zwarts wrote:
Op 18.jun.2025 om 03:54 schreef olcott:
On 6/17/2025 8:19 PM, Richard Damon wrote:
On 6/17/25 4:34 PM, olcott wrote:
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.
>
WHich means that the code for HHH is part of the input, and thus there is just ONE HHH in existance at this time.
>
Since that code aborts its simulation to return the answer that you claim, you are just lying that it did a correct simulation (which in this context means complete)
>
>
*none of them ever stop running unless aborted*
>
All of them do abort and their simulation does not need an abort.
>
>
*It is not given that any of them abort*
>
>
At least it is true for all aborting ones, such as the one you presented in Halt7.c.
>
My claim is that each of the above functions correctly
simulated by any termination analyzer HHH that can possibly
exist will never stop running unless aborted by HHH.
Can you affirm or correctly refute this?
>
Yes, I confirmed many times that we can confirm this vacuous claim, because no such HHH exists. All of them fail to do a correct simulation up to the point where they can see whether the input specifies a halting program.
>
if DDD correctly simulated by any simulating termination
analyzer HHH never aborts its simulation of DDD then
>
that HHH is not interesting.
>
*then the HP proofs are proved to be wrong*
>
Does not follow. HHH and DDD are irrelevant to those proofs.
>
void DDD()
{
   HHH(DDD);
   return;
}
>
When I dumbed the original self-referential proof down
to HHH(DDD) everyone here proved that they did not even
understand what ordinary recursion is.
>
That you are dumb does not mean that others don't understand
ordinary recursion.
>
>
Mensa scored me on the top 3% of the population.
 Your intelligence, not wisdom.
 
This is a little more difficult than ordinary recursion.
 Perhaps to your little mind.
 
void DDD()
{
   HHH(DDD);
   return;
}
>
_DDD()
[00002192] 55             push ebp
[00002193] 8bec           mov ebp,esp
[00002195] 6892210000     push 00002192  // push DDD
[0000219a] e833f4ffff     call 000015d2  // call HHH
[0000219f] 83c404         add esp,+04
[000021a2] 5d             pop ebp
[000021a3] c3             ret
Size in bytes:(0018) [000021a3]
>
The x86 source code of DDD specifies that this emulated
DDD cannot possibly reach its own emulated "ret" instruction
final halt state when emulated by HHH according to the
semantics of the x86 language.
 That defect in HHH is already known and a possible fix has been proposed.
 
Four Chatbots all agree that the input to simulating termination
analyzer HHH(DDD) specifies non-terminating recursive emulation
even though the directly executed DDD() halts.
--
Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
hits a target no one else can see." Arthur Schopenhauer

Date Sujet#  Auteur
17 Jun 25 * How do simulating termination analyzers work?136olcott
18 Jun 25 +* Re: How do simulating termination analyzers work?131Richard Damon
18 Jun 25 i`* Re: How do simulating termination analyzers work?130olcott
18 Jun 25 i +* Re: How do simulating termination analyzers work?103Fred. Zwarts
18 Jun 25 i i`* Re: How do simulating termination analyzers work?102olcott
18 Jun 25 i i +* Re: How do simulating termination analyzers work?6joes
18 Jun 25 i i i`* Re: How do simulating termination analyzers work?5olcott
18 Jun 25 i i i +* Re: How do simulating termination analyzers work?3joes
18 Jun 25 i i i i`* Re: How do simulating termination analyzers work?2olcott
19 Jun 25 i i i i `- Re: How do simulating termination analyzers work?1Richard Damon
19 Jun 25 i i i `- Re: How do simulating termination analyzers work?1Richard Damon
19 Jun 25 i i +* Re: How do simulating termination analyzers work?15Richard Damon
19 Jun 25 i i i`* Re: How do simulating termination analyzers work?14olcott
19 Jun 25 i i i +* Re: How do simulating termination analyzers work?7Fred. Zwarts
19 Jun 25 i i i i`* Re: How do simulating termination analyzers work?6olcott
20 Jun 25 i i i i +- Re: How do simulating termination analyzers work?1Richard Damon
20 Jun 25 i i i i `* Re: How do simulating termination analyzers work?4Fred. Zwarts
20 Jun 25 i i i i  `* Re: How do simulating termination analyzers work?3olcott
21 Jun 25 i i i i   +- Re: How do simulating termination analyzers work?1Richard Damon
22 Jun 25 i i i i   `- Re: How do simulating termination analyzers work?1Fred. Zwarts
20 Jun 25 i i i `* Re: How do simulating termination analyzers work?6Richard Damon
20 Jun 25 i i i  `* Re: How do simulating termination analyzers work?5olcott
20 Jun 25 i i i   `* Re: How do simulating termination analyzers work?4Fred. Zwarts
20 Jun 25 i i i    `* Re: How do simulating termination analyzers work?3olcott
21 Jun 25 i i i     +- Re: How do simulating termination analyzers work?1Richard Damon
22 Jun 25 i i i     `- Re: How do simulating termination analyzers work?1Fred. Zwarts
19 Jun 25 i i +* Re: How do simulating termination analyzers work?19Mikko
19 Jun 25 i i i`* Re: How do simulating termination analyzers work?18olcott
19 Jun 25 i i i +* Re: How do simulating termination analyzers work?16Fred. Zwarts
19 Jun 25 i i i i+* Re: How do simulating termination analyzers work?2olcott
20 Jun 25 i i i ii`- Re: How do simulating termination analyzers work?1Fred. Zwarts
20 Jun 25 i i i i`* Re: How do simulating termination analyzers work?13Mikko
20 Jun 25 i i i i `* Re: How do simulating termination analyzers work?12olcott
21 Jun 25 i i i i  +- Re: How do simulating termination analyzers work?1Richard Damon
21 Jun 25 i i i i  `* Re: How do simulating termination analyzers work?10Mikko
21 Jun 25 i i i i   `* Re: How do simulating termination analyzers work?9olcott
21 Jun 25 i i i i    +- Re: How do simulating termination analyzers work?1Richard Damon
22 Jun 25 i i i i    `* Re: How do simulating termination analyzers work?7Mikko
22 Jun 25 i i i i     `* Re: How do simulating termination analyzers work?6olcott
23 Jun 25 i i i i      `* Re: How do simulating termination analyzers work?5Mikko
23 Jun 25 i i i i       `* Re: How do simulating termination analyzers work?4olcott
24 Jun 25 i i i i        `* Re: How do simulating termination analyzers work?3Mikko
24 Jun 25 i i i i         `* Re: How do simulating termination analyzers work?2olcott
25 Jun 25 i i i i          `- Re: How do simulating termination analyzers work?1Mikko
20 Jun 25 i i i `- Re: How do simulating termination analyzers work?1Richard Damon
19 Jun 25 i i `* Re: How do simulating termination analyzers work?61Fred. Zwarts
19 Jun 25 i i  `* Re: How do simulating termination analyzers work?60olcott
20 Jun 25 i i   `* Re: How do simulating termination analyzers work?59Fred. Zwarts
20 Jun 25 i i    `* Re: How do simulating termination analyzers work?58olcott
21 Jun 25 i i     +- Re: How do simulating termination analyzers work?1Richard Damon
21 Jun 25 i i     `* Re: How do simulating termination analyzers work?56Mikko
21 Jun 25 i i      `* Re: How do simulating termination analyzers work?55olcott
21 Jun 25 i i       +- Re: How do simulating termination analyzers work?1Richard Damon
22 Jun 25 i i       +* Re: How do simulating termination analyzers work?48Mikko
22 Jun 25 i i       i`* Re: How do simulating termination analyzers work?47olcott
23 Jun 25 i i       i `* Re: How do simulating termination analyzers work?46Mikko
23 Jun 25 i i       i  `* Re: How do simulating termination analyzers work?45olcott
24 Jun 25 i i       i   `* Re: How do simulating termination analyzers work?44Mikko
24 Jun 25 i i       i    `* Re: How do simulating termination analyzers work?43olcott
25 Jun 25 i i       i     `* Re: How do simulating termination analyzers work?42Mikko
26 Jun 25 i i       i      `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism41Mikko
28 Jun 25 i i       i       `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism40olcott
28 Jun 25 i i       i        `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism39Mikko
28 Jun 25 i i       i         `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism38olcott
29 Jun 25 i i       i          `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism37Mikko
29 Jun 25 i i       i           `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism36olcott
30 Jun18:49 i i       i            `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism35olcott
1 Jul08:51 i i       i             `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism34Mikko
1 Jul12:46 i i       i              `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism33olcott
2 Jul07:53 i i       i               `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism32Mikko
3 Jul23:11 i i       i                `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism31olcott
3 Jul23:58 i i       i                 +- Re: How do simulating termination analyzers work? ---Truth Maker Maximalism1Richard Damon
4 Jul08:25 i i       i                 +* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism13Mikko
4 Jul13:34 i i       i                 i`* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism12olcott
4 Jul14:33 i i       i                 i +* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism8joes
4 Jul18:19 i i       i                 i i`* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE7olcott
5 Jul13:26 i i       i                 i i `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE6Alan Mackenzie
5 Jul16:00 i i       i                 i i  `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE5olcott
5 Jul20:07 i i       i                 i i   `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE4Alan Mackenzie
5 Jul20:34 i i       i                 i i    `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE3olcott
6 Jul10:50 i i       i                 i i     +- Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE1Fred. Zwarts
6 Jul11:16 i i       i                 i i     `- Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE1Alan Mackenzie
5 Jul09:32 i i       i                 i `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism3Mikko
5 Jul16:46 i i       i                 i  `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism2olcott
6 Jul09:46 i i       i                 i   `- Re: How do simulating termination analyzers work? ---Truth Maker Maximalism1Mikko
4 Jul09:55 i i       i                 `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism16joes
4 Jul13:16 i i       i                  `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism15olcott
4 Jul14:37 i i       i                   `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism14joes
4 Jul18:30 i i       i                    `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism13olcott
4 Jul19:23 i i       i                     `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism12joes
4 Jul19:37 i i       i                      `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism11olcott
4 Jul20:09 i i       i                       `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism10joes
4 Jul20:15 i i       i                        `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism9olcott
4 Jul21:45 i i       i                         `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism8Richard Damon
4 Jul23:26 i i       i                          `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism7olcott
5 Jul08:26 i i       i                           +* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism3Fred. Zwarts
5 Jul16:57 i i       i                           i`* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism2olcott
6 Jul10:30 i i       i                           i `- Re: How do simulating termination analyzers work? ---Truth Maker Maximalism1Fred. Zwarts
5 Jul14:11 i i       i                           `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism3Richard Damon
5 Jul17:22 i i       i                            `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism2olcott
6 Jul01:40 i i       i                             `- Re: How do simulating termination analyzers work? ---Truth Maker Maximalism1Richard Damon
29 Jun 25 i i       `* Re: How do simulating termination analyzers work?5Mikko
18 Jun 25 i `* Re: How do simulating termination analyzers work?26Richard Damon
18 Jun 25 +- Re: How do simulating termination analyzers work?1Mikko
19 Jun 25 `* Re: How do simulating termination analyzers work?3Mikko

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal