Re: My reviewers think that halt deciders must report on the behavior of their caller

Liste des GroupesRevenir à theory 
Sujet : Re: My reviewers think that halt deciders must report on the behavior of their caller
De : richard (at) *nospam* damon-family.org (Richard Damon)
Groupes : comp.theory
Date : 10. Jul 2025, 02:39:07
Autres entêtes
Organisation : i2pn2 (i2pn.org)
Message-ID : <8d6c1b8d100445e23c8e61f3366eeac1500dfc94@i2pn2.org>
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
User-Agent : Mozilla Thunderbird
On 7/9/25 9:35 AM, olcott wrote:
On 7/9/2025 4:09 AM, Fred. Zwarts wrote:
Op 08.jul.2025 om 21:49 schreef olcott:
On 7/8/2025 2:01 PM, Mike Terry wrote:
On 08/07/2025 17:07, joes wrote:
Am Tue, 08 Jul 2025 10:08:05 -0500 schrieb olcott:
On 7/8/2025 6:13 AM, Richard Damon wrote:
On 7/7/25 10:38 PM, olcott wrote:
On 7/7/2025 9:18 PM, Richard Damon wrote:
On 7/7/25 7:52 PM, olcott wrote:
On 7/7/2025 5:41 PM, Richard Damon wrote:
On 7/7/25 2:38 PM, olcott wrote:
On 7/7/2025 2:36 AM, Fred. Zwarts wrote:
Op 07.jul.2025 om 05:12 schreef olcott:
On 7/6/2025 9:09 PM, Richard Damon wrote:
On 7/6/25 4:06 PM, olcott wrote:
On 7/6/2025 12:00 PM, Richard Damon wrote:
>
And there is no way for HHH to correctly simulate its input
and return an answer
>
You insistence that a non-terminating input be simulated until
non-existent completion is especially nuts because you have
been told about this dozens of times.
What the F is wrong with you?
>
It seems you don't understand those words.
I don't say that the decider needs to simulate the input to
completion, but that it needs to be able to actually PROVE that
if this exact input WAS given to a correct simultor (which
won't be itself, since it isn't doing the complete simulation)
will run for an unbounded number of steps.
>
No decider is ever allowed to report on anything besides the
actual behavior that its input actually specifies.
Ah, but your HHH does report on a *hypothetical* input that wouldn't
call the aborting simulator HHH, but instead a *different* (possibly
similar) simulator that would *not* abort.
>
And HHH does not do that. The input specifies a halting program,
because it includes the abort code. But HHH gives up before it
reaches that part of the specification and the final halt state.
>
I have corrected you on this too many times.
You have sufficiently proven that you are dishonest or
incompetent.
*This code proves that you are wrong*
https://github.com/plolcott/x86utm/blob/master/Halt7.c That you
are too F-ing stupid to see this is less than no rebuttal at all.
>
No, that code proves that HHH, as defined, always aborts its
simulation of DDD and returns 0,
That is counter-factual and you would know this if you had good C++
skills.
>
How is it "Counter-Factual"?
It is YOU that is just counter-factual.
>
"No, that code proves that HHH, as defined,
   always aborts its simulation of DDD"
That is a false statement. If you understood the code you would know
your error.
>
Really, so how does that code NOT aboft its simulation of DDD?
>
You have a reading comprehension problem.
When critique words you are strictly not allowed to change even a single
word without being dishonest.
"No, that code proves that HHH as defined
     always aborts its simulation of DDD"
If you can't figure how how that is false we have conclusively proved
your lack of sufficient technical competence.
Wow. Can't you just answer the question? Also, "we" and "proved"? Not
being understood isn't very convincing. So how does HHH not abort?
>
This is one of PO's practiced tactics - he makes a claim, and regardless of how patently false that claim appears, he refuses to logically defend the claim beyond saying "the claim is true, and if you understood xxx you would realise it is true".
>
>
All of my claims are easily verified facts to those
with the capacity to verify them.
>
Again changing the meaning of the words. Here 'capacity' seems to mean the ability to ignore the facts.
>
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]
>
This is not the full program.
 It need not be a full program.
All that needs to be known is that
DDD is emulated by HHH using an x86 emulator.
 
It refers in the call instruction to address 000015d2, which is not shown here.
 *It is shown here*
https://liarparadox.org/HHH(DDD)_Full_Trace.pdf
Because we have multiple levels of emulation the
instructions of each level are mixed together as
they actually occur in the execution trace.
 None of these are relevant.
*The only thing that is relevant is this portion*
Except the below isn't actually a correct simulation, as that isn't what a call HHH does.
I guess you are just proving you don't understand what you are talking about and just make you you lies.

   machine   stack     stack     machine    assembly
  address   address   data      code       language
  ========  ========  ========  =========  =============
[00002192][00103820][00000000] 55         push ebp      ; Begin main()
[00002193][00103820][00000000] 8bec       mov ebp,esp   ; housekeeping
[00002195][0010381c][00002172] 6872210000 push 00002172 ; push DDD
[0000219a][00103818][0000219f] e833f4ffff call 000015d2 ; call HHH(DDD)
 New slave_stack at:1038c4
Begin Local Halt Decider Simulation   Execution Trace Stored at:1138cc
[00002172][001138bc][001138c0] 55         push ebp      ; housekeeping
[00002173][001138bc][001138c0] 8bec       mov ebp,esp   ; housekeeping
[00002175][001138b8][00002172] 6872210000 push 00002172 ; push DDD
[0000217a][001138b4][0000217f] e853f4ffff call 000015d2 ; call HHH(DDD)
New slave_stack at:14e2ec
[00002172][0015e2e4][0015e2e8] 55         push ebp      ; housekeeping
[00002173][0015e2e4][0015e2e8] 8bec       mov ebp,esp   ; housekeeping
[00002175][0015e2e0][00002172] 6872210000 push 00002172 ; push DDD
[0000217a][0015e2dc][0000217f] e853f4ffff call 000015d2 ; call HHH(DDD)
Local Halt Decider: Infinite Recursion Detected Simulation Stopped
 
 From other sources, such as Halt7.c, we know that this is the code for a HHH that aborts and returns a value 0.
 It is impossible for any HHH to return any value
to any simulated DDD. The code completely proves this.
 
When we use that fact, we see that a correct simulation would
 The stupid mistake that everyone here makes is thinking
that their expectation of what the code should do overrides
the behavior that this code actually specifies.
But what you say the code does, isn't what it actually does, because you just lie about everything

 DDD emulated by HHH according to the semantics of the
x86 language specifies that this DDD cannot possibly
reach its final halt state.
But your above shows that your HHH doesnt correctly emulate the input, and that you are just a stupid liar.
It seems you think computers are just naturally broken and won't do what they are programmed to do.

 
continue at 0000219f, using this value and reaching the final halt state.
Of course, HHH fails to do this correct simulation, as you have shown many times.
  

Date Sujet#  Auteur
3 Jun 25 * My reviewers think that halt deciders must report on the behavior of their caller182olcott
4 Jun 25 +* Re: My reviewers think that halt deciders must report on the behavior of their caller119dbush
4 Jun 25 i`* Re: My reviewers think that halt deciders must report on the behavior of their caller118olcott
4 Jun 25 i +* Re: My reviewers think that halt deciders must report on the behavior of their caller116dbush
4 Jun 25 i i`* Re: My reviewers think that halt deciders must report on the behavior of their caller115olcott
4 Jun 25 i i `* Re: My reviewers think that halt deciders must report on the behavior of their caller114dbush
4 Jun 25 i i  `* Re: My reviewers think that halt deciders must report on the behavior of their caller113olcott
4 Jun 25 i i   `* Re: My reviewers think that halt deciders must report on the behavior of their caller112dbush
4 Jul21:43 i i    `* Re: My reviewers think that halt deciders must report on the behavior of their caller111olcott
4 Jul21:53 i i     `* Re: My reviewers think that halt deciders must report on the behavior of their caller110Richard Damon
4 Jul23:11 i i      +* Re: My reviewers think that halt deciders must report on the behavior of their caller99olcott
5 Jul14:14 i i      i`* Re: My reviewers think that halt deciders must report on the behavior of their caller98Richard Damon
5 Jul17:26 i i      i `* Re: My reviewers think that halt deciders must report on the behavior of their caller97olcott
6 Jul01:44 i i      i  `* Re: My reviewers think that halt deciders must report on the behavior of their caller96Richard Damon
6 Jul04:02 i i      i   `* Re: My reviewers think that halt deciders must report on the behavior of their caller95Richard Damon
6 Jul05:34 i i      i    `* Re: My reviewers think that halt deciders must report on the behavior of their caller94olcott
6 Jul10:32 i i      i     +- Re: My reviewers think that halt deciders must report on the behavior of their caller1Fred. Zwarts
6 Jul12:50 i i      i     `* Re: My reviewers think that halt deciders must report on the behavior of their caller92Richard Damon
6 Jul16:19 i i      i      `* Re: My reviewers think that halt deciders must report on the behavior of their caller91olcott
6 Jul18:00 i i      i       `* Re: My reviewers think that halt deciders must report on the behavior of their caller90Richard Damon
6 Jul21:06 i i      i        `* Re: My reviewers think that halt deciders must report on the behavior of their caller89olcott
7 Jul03:09 i i      i         +* Re: My reviewers think that halt deciders must report on the behavior of their caller87Richard Damon
7 Jul04:12 i i      i         i`* Re: My reviewers think that halt deciders must report on the behavior of their caller86olcott
7 Jul08:36 i i      i         i +* Re: My reviewers think that halt deciders must report on the behavior of their caller50Fred. Zwarts
7 Jul14:23 i i      i         i i+* Re: My reviewers think that halt deciders must report on the behavior of their caller9olcott
8 Jul09:10 i i      i         i ii`* Re: My reviewers think that halt deciders must report on the behavior of their caller8Fred. Zwarts
8 Jul15:59 i i      i         i ii `* Re: My reviewers think that halt deciders must report on the behavior of their caller7olcott
9 Jul10:58 i i      i         i ii  +* Re: My reviewers think that halt deciders must report on the behavior of their caller5Fred. Zwarts
9 Jul14:46 i i      i         i ii  i`* Re: My reviewers think that halt deciders must report on the behavior of their caller4olcott
10 Jul12:17 i i      i         i ii  i +* Re: My reviewers think that halt deciders must report on the behavior of their caller2Fred. Zwarts
10 Jul15:46 i i      i         i ii  i i`- Re: My reviewers think that halt deciders must report on the behavior of their caller1olcott
10 Jul12:41 i i      i         i ii  i `- Re: My reviewers think that halt deciders must report on the behavior of their caller1Richard Damon
9 Jul12:32 i i      i         i ii  `- Re: My reviewers think that halt deciders must report on the behavior of their caller1Richard Damon
7 Jul19:38 i i      i         i i`* Re: My reviewers think that halt deciders must report on the behavior of their caller40olcott
7 Jul23:41 i i      i         i i +* Re: My reviewers think that halt deciders must report on the behavior of their caller38Richard Damon
8 Jul00:52 i i      i         i i i`* Re: My reviewers think that halt deciders must report on the behavior of their caller37olcott
8 Jul03:18 i i      i         i i i `* Re: My reviewers think that halt deciders must report on the behavior of their caller36Richard Damon
8 Jul03:38 i i      i         i i i  `* Re: My reviewers think that halt deciders must report on the behavior of their caller35olcott
8 Jul08:15 i i      i         i i i   +* Re: My reviewers think that halt deciders must report on the behavior of their caller9joes
8 Jul15:14 i i      i         i i i   i`* Re: My reviewers think that halt deciders must report on the behavior of their caller8olcott
8 Jul17:10 i i      i         i i i   i +* Re: My reviewers think that halt deciders must report on the behavior of their caller6joes
8 Jul17:22 i i      i         i i i   i i`* Re: My reviewers think that halt deciders must report on the behavior of their caller5olcott
8 Jul18:44 i i      i         i i i   i i +* Re: My reviewers think that halt deciders must report on the behavior of their caller3joes
8 Jul19:21 i i      i         i i i   i i i`* Re: My reviewers think that halt deciders must report on the behavior of their caller2olcott
9 Jul12:38 i i      i         i i i   i i i `- Re: My reviewers think that halt deciders must report on the behavior of their caller1Richard Damon
9 Jul12:36 i i      i         i i i   i i `- Re: My reviewers think that halt deciders must report on the behavior of their caller1Richard Damon
9 Jul12:34 i i      i         i i i   i `- Re: My reviewers think that halt deciders must report on the behavior of their caller1Richard Damon
8 Jul12:13 i i      i         i i i   `* Re: My reviewers think that halt deciders must report on the behavior of their caller25Richard Damon
8 Jul16:08 i i      i         i i i    `* Re: My reviewers think that halt deciders must report on the behavior of their caller24olcott
8 Jul17:07 i i      i         i i i     +* Re: My reviewers think that halt deciders must report on the behavior of their caller20joes
8 Jul17:19 i i      i         i i i     i+* Re: My reviewers think that halt deciders must report on the behavior of their caller2olcott
8 Jul23:33 i i      i         i i i     ii`- Re: My reviewers think that halt deciders must report on the behavior of their caller1Richard Damon
8 Jul20:01 i i      i         i i i     i`* Re: My reviewers think that halt deciders must report on the behavior of their caller17Mike Terry
8 Jul20:49 i i      i         i i i     i `* Re: My reviewers think that halt deciders must report on the behavior of their caller16olcott
9 Jul02:30 i i      i         i i i     i  +* Re: My reviewers think that halt deciders must report on the behavior of their caller2olcott
9 Jul12:48 i i      i         i i i     i  i`- Re: My reviewers think that halt deciders must report on the behavior of their caller1Richard Damon
9 Jul10:09 i i      i         i i i     i  +* Re: My reviewers think that halt deciders must report on the behavior of their caller5Fred. Zwarts
9 Jul14:35 i i      i         i i i     i  i`* Re: My reviewers think that halt deciders must report on the behavior of their caller4olcott
10 Jul02:39 i i      i         i i i     i  i +- Re: My reviewers think that halt deciders must report on the behavior of their caller1Richard Damon
10 Jul12:08 i i      i         i i i     i  i `* Re: My reviewers think that halt deciders must report on the behavior of their caller2Fred. Zwarts
10 Jul15:43 i i      i         i i i     i  i  `- Re: My reviewers think that halt deciders must report on the behavior of their caller1olcott
9 Jul12:44 i i      i         i i i     i  `* Re: My reviewers think that halt deciders must report on the behavior of their caller8Richard Damon
9 Jul14:55 i i      i         i i i     i   `* Re: My reviewers think that halt deciders must report on the behavior of their caller --- Mike7olcott
10 Jul02:49 i i      i         i i i     i    `* Re: My reviewers think that halt deciders must report on the behavior of their caller --- Mike6Richard Damon
10 Jul03:50 i i      i         i i i     i     `* Re: My reviewers think that halt deciders must report on the behavior of their caller --- Mike5olcott
10 Jul12:35 i i      i         i i i     i      `* Re: My reviewers think that halt deciders must report on the behavior of their caller --- Mike4Richard Damon
10 Jul14:24 i i      i         i i i     i       `* Re: My reviewers think that halt deciders must report on the behavior of their caller --- Mike3olcott
11 Jul01:04 i i      i         i i i     i        `* Re: My reviewers think that halt deciders must report on the behavior of their caller --- Mike2Richard Damon
11 Jul01:27 i i      i         i i i     i         `- Re: My reviewers think that halt deciders must report on the behavior of their caller --- Mike1olcott
8 Jul23:31 i i      i         i i i     `* Re: My reviewers think that halt deciders must report on the behavior of their caller3Richard Damon
8 Jul23:51 i i      i         i i i      `* Re: My reviewers think that halt deciders must report on the behavior of their caller2olcott
9 Jul12:51 i i      i         i i i       `- Re: My reviewers think that halt deciders must report on the behavior of their caller1Richard Damon
8 Jul09:17 i i      i         i i `- Re: My reviewers think that halt deciders must report on the behavior of their caller1Fred. Zwarts
7 Jul09:37 i i      i         i +* Re: My reviewers think that halt deciders must report on the behavior of their caller10Mikko
7 Jul15:15 i i      i         i i`* Re: My reviewers think that halt deciders must report on the behavior of their caller9olcott
7 Jul23:45 i i      i         i i +- Re: My reviewers think that halt deciders must report on the behavior of their caller1Richard Damon
8 Jul08:44 i i      i         i i `* Re: My reviewers think that halt deciders must report on the behavior of their caller7Mikko
8 Jul15:21 i i      i         i i  `* Re: My reviewers think that halt deciders must report on the behavior of their caller6olcott
9 Jul09:22 i i      i         i i   `* Re: My reviewers think that halt deciders must report on the behavior of their caller5Mikko
9 Jul13:25 i i      i         i i    `* Re: My reviewers think that halt deciders must report on the behavior of their caller4olcott
10 Jul03:00 i i      i         i i     +- Re: My reviewers think that halt deciders must report on the behavior of their caller1Richard Damon
10 Jul10:30 i i      i         i i     `* Re: My reviewers think that halt deciders must report on the behavior of their caller2Mikko
10 Jul15:26 i i      i         i i      `- Re: My reviewers think that halt deciders must report on the behavior of their caller1olcott
7 Jul12:19 i i      i         i `* Re: My reviewers think that halt deciders must report on the behavior of their caller25Richard Damon
7 Jul14:32 i i      i         i  `* Re: My reviewers think that halt deciders must report on the behavior of their caller24olcott
7 Jul23:39 i i      i         i   `* Re: My reviewers think that halt deciders must report on the behavior of their caller23Richard Damon
8 Jul00:47 i i      i         i    `* Re: My reviewers think that halt deciders must report on the behavior of their caller22olcott
8 Jul03:24 i i      i         i     `* Re: My reviewers think that halt deciders must report on the behavior of their caller21Richard Damon
8 Jul03:52 i i      i         i      `* Re: My reviewers think that halt deciders must report on the behavior of their caller20olcott
8 Jul08:55 i i      i         i       +* Re: My reviewers think that halt deciders must report on the behavior of their caller6Fred. Zwarts
8 Jul15:31 i i      i         i       i`* Re: My reviewers think that halt deciders must report on the behavior of their caller5olcott
9 Jul10:04 i i      i         i       i `* Re: My reviewers think that halt deciders must report on the behavior of their caller4Fred. Zwarts
9 Jul14:16 i i      i         i       i  `* Re: My reviewers think that halt deciders must report on the behavior of their caller3olcott
10 Jul11:59 i i      i         i       i   +- Re: My reviewers think that halt deciders must report on the behavior of their caller1Fred. Zwarts
10 Jul12:36 i i      i         i       i   `- Re: My reviewers think that halt deciders must report on the behavior of their caller1Richard Damon
8 Jul12:18 i i      i         i       `* Re: My reviewers think that halt deciders must report on the behavior of their caller13Richard Damon
8 Jul16:17 i i      i         i        `* Re: My reviewers think that halt deciders must report on the behavior of their caller12olcott
9 Jul09:58 i i      i         i         +* Re: My reviewers think that halt deciders must report on the behavior of their caller10Fred. Zwarts
9 Jul14:02 i i      i         i         i`* Re: My reviewers think that halt deciders must report on the behavior of their caller9olcott
9 Jul14:37 i i      i         i         i +* Re: My reviewers think that halt deciders must report on the behavior of their caller6joes
9 Jul15:06 i i      i         i         i i`* Re: My reviewers think that halt deciders must report on the behavior of their caller5olcott
10 Jul11:54 i i      i         i         i `* Re: My reviewers think that halt deciders must report on the behavior of their caller2Fred. Zwarts
9 Jul13:00 i i      i         i         `- Re: My reviewers think that halt deciders must report on the behavior of their caller1Richard Damon
7 Jul09:34 i i      i         `- Re: My reviewers think that halt deciders must report on the behavior of their caller1Mikko
4 Jul23:15 i i      +* Re: My reviewers think that halt deciders must report on the behavior of their caller9olcott
5 Jul16:11 i i      `- Re: My reviewers think that halt deciders must report on the behavior of their caller1olcott
4 Jun 25 i `- Re: My reviewers think that halt deciders must report on the behavior of their caller1Richard Damon
4 Jun 25 +- Re: My reviewers think that halt deciders must report on the behavior of their caller1Richard Damon
4 Jun 25 `* Re: My reviewers think that halt deciders must report on the behavior of their caller61Mikko

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal