A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
If the finite string machine string machine
description specifies that it cannot possibly
reach its own final halt state then this machine
description specifies non-halting behavior.
A halt decider never ever computes the mapping
for the computation that itself is contained within.
Unless there is a pathological relationship between
the halt decider H and its input D the direct execution
of this input D will always have identical behavior to
D correctly simulated by simulating halt decider H.
*Simulating Termination Analyzer H Not Fooled by Pathological Input D* https://www.researchgate.net/publication/369971402_Simulating_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
A correct emulation of DDD by HHH only requires that HHH
emulate the instructions of DDD** including when DDD calls
HHH in recursive emulation such that HHH emulates itself
emulating DDD.
** According to the semantics of the x86 language.
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
If the finite string machine string machine
description specifies that it cannot possibly
reach its own final halt state then this machine
description specifies non-halting behavior.
A halt decider never ever computes the mapping
for the computation that itself is contained within.
Unless there is a pathological relationship between
the halt decider H and its input D the direct execution
of this input D will always have identical behavior to
D correctly simulated by simulating halt decider H.
*Simulating Termination Analyzer H Not Fooled by Pathological Input D* https://www.researchgate.net/ publication/369971402_Simulating_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
A correct emulation of DDD by HHH only requires that HHH
emulate the instructions of DDD** including when DDD calls
HHH in recursive emulation such that HHH emulates itself
emulating DDD.
** According to the semantics of the x86 language.
On 9/2/2024 12:52 PM, Fred. Zwarts wrote:
Op 02.sep.2024 om 18:38 schreef olcott:
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
If the finite string machine string machine
description specifies that it cannot possibly
reach its own final halt state then this machine
description specifies non-halting behavior.
A halt decider never ever computes the mapping
for the computation that itself is contained within.
Unless there is a pathological relationship between
the halt decider H and its input D the direct execution
of this input D will always have identical behavior to
D correctly simulated by simulating halt decider H.
*Simulating Termination Analyzer H Not Fooled by Pathological Input D*
https://www.researchgate.net/
publication/369971402_Simulating_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
A correct emulation of DDD by HHH only requires that HHH
emulate the instructions of DDD** including when DDD calls
HHH in recursive emulation such that HHH emulates itself
emulating DDD.
Indeed, it should simulate *itself* and not a hypothetical other HHH
with different behaviour.
It is emulating the exact same freaking machine code
that the x86utm operating system is emulating.
If HHH includes code to see a 'special condition' and aborts and
halts, then it should also simulate the HHH that includes this same
code and
DDD has itself and the emulated HHH stuck in recursive emulation.
IS THE CONCEPT OF UNREACHABLE CODE OVER YOUR HEAD?
IS THE CONCEPT OF UNREACHABLE CODE OVER YOUR HEAD?
IS THE CONCEPT OF UNREACHABLE CODE OVER YOUR HEAD?
void Infinite_Recursion()
{
Infinite_Recursion();
printf("Fred is too dumb to know this code is never reached!\n");
}
On 9/2/2024 11:38 AM, olcott wrote:
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
If the finite string machine string machine
description specifies that it cannot possibly
reach its own final halt state then this machine
description specifies non-halting behavior.
A halt decider never ever computes the mapping
for the computation that itself is contained within.
Unless there is a pathological relationship between
the halt decider H and its input D the direct execution
of this input D will always have identical behavior to
D correctly simulated by simulating halt decider H.
*Simulating Termination Analyzer H Not Fooled by Pathological Input D*
https://www.researchgate.net/
publication/369971402_Simulating_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
A correct emulation of DDD by HHH only requires that HHH
emulate the instructions of DDD** including when DDD calls
HHH in recursive emulation such that HHH emulates itself
emulating DDD.
** According to the semantics of the x86 language.
This prevents the correctly emulated** DDD from ever
reaching its final halt state no matter what HHH does.
On 9/2/2024 12:52 PM, Fred. Zwarts wrote:
Op 02.sep.2024 om 18:38 schreef olcott:
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
If the finite string machine string machine
description specifies that it cannot possibly
reach its own final halt state then this machine
description specifies non-halting behavior.
A halt decider never ever computes the mapping
for the computation that itself is contained within.
Unless there is a pathological relationship between
the halt decider H and its input D the direct execution
of this input D will always have identical behavior to
D correctly simulated by simulating halt decider H.
*Simulating Termination Analyzer H Not Fooled by Pathological Input D*
https://www.researchgate.net/
publication/369971402_Simulating_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
A correct emulation of DDD by HHH only requires that HHH
emulate the instructions of DDD** including when DDD calls
HHH in recursive emulation such that HHH emulates itself
emulating DDD.
Indeed, it should simulate *itself* and not a hypothetical other HHH
with different behaviour.
If HHH includes code to see a 'special condition' and aborts and
halts, then it should also simulate the HHH that includes this same
code and
DDD has itself and the emulated HHH stuck in recursive emulation.
void DDD()
{
HHH(DDD);
return;
}
When HHH emulates itself emulating DDD the emulated
HHH cannot possibly return because each DDD keeps
calling HHH to emulate itself again until the outer
executed HHH kills the whole emulated process at
the very first emulated DDD before it ever reaches
its own second line.
On 9/2/2024 12:52 PM, Fred. Zwarts wrote:
Op 02.sep.2024 om 18:38 schreef olcott:
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
If the finite string machine string machine
description specifies that it cannot possibly
reach its own final halt state then this machine
description specifies non-halting behavior.
A halt decider never ever computes the mapping
for the computation that itself is contained within.
Unless there is a pathological relationship between
the halt decider H and its input D the direct execution
of this input D will always have identical behavior to
D correctly simulated by simulating halt decider H.
*Simulating Termination Analyzer H Not Fooled by Pathological Input D*
https://www.researchgate.net/
publication/369971402_Simulating_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
A correct emulation of DDD by HHH only requires that HHH
emulate the instructions of DDD** including when DDD calls
HHH in recursive emulation such that HHH emulates itself
emulating DDD.
Indeed, it should simulate *itself* and not a hypothetical other HHH
with different behaviour.
It is emulating the exact same freaking machine code
that the x86utm operating system is emulating.
If HHH includes code to see a 'special condition' and aborts and
halts, then it should also simulate the HHH that includes this same
code and
DDD has itself and the emulated HHH stuck in recursive emulation.
IS THE CONCEPT OF UNREACHABLE CODE OVER YOUR HEAD?
IS THE CONCEPT OF UNREACHABLE CODE OVER YOUR HEAD?
IS THE CONCEPT OF UNREACHABLE CODE OVER YOUR HEAD?
void Infinite_Recursion()
{
Infinite_Recursion();
printf("Fred is too dumb to know this code is never reached!\n");
}
On 9/2/2024 12:52 PM, Fred. Zwarts wrote:
Op 02.sep.2024 om 18:38 schreef olcott:
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
If the finite string machine string machine
description specifies that it cannot possibly
reach its own final halt state then this machine
description specifies non-halting behavior.
A halt decider never ever computes the mapping
for the computation that itself is contained within.
Unless there is a pathological relationship between
the halt decider H and its input D the direct execution
of this input D will always have identical behavior to
D correctly simulated by simulating halt decider H.
*Simulating Termination Analyzer H Not Fooled by Pathological Input D*
https://www.researchgate.net/
publication/369971402_Simulating_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
A correct emulation of DDD by HHH only requires that HHH
emulate the instructions of DDD** including when DDD calls
HHH in recursive emulation such that HHH emulates itself
emulating DDD.
Indeed, it should simulate *itself* and not a hypothetical other HHH
with different behaviour.
If HHH includes code to see a 'special condition' and aborts and
halts, then it should also simulate the HHH that includes this same
code and
DDD has itself and the emulated HHH stuck in recursive emulation.
void DDD()
{
HHH(DDD);
return;
}
When HHH emulates itself emulating DDD the emulatedAnd this outer HHH does it one cycle before the inner HHH would do the
HHH cannot possibly return because each DDD keeps
calling HHH to emulate itself again until the outer
executed HHH kills the whole emulated process at
the very first emulated DDD before it ever reaches
its own second line.
On 9/2/2024 11:38 AM, olcott wrote:
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
If the finite string machine string machine
description specifies that it cannot possibly
reach its own final halt state then this machine
description specifies non-halting behavior.
A halt decider never ever computes the mapping
for the computation that itself is contained within.
Unless there is a pathological relationship between
the halt decider H and its input D the direct execution
of this input D will always have identical behavior to
D correctly simulated by simulating halt decider H.
*Simulating Termination Analyzer H Not Fooled by Pathological Input D*
https://www.researchgate.net/
publication/369971402_Simulating_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
A correct emulation of DDD by HHH only requires that HHH
emulate the instructions of DDD** including when DDD calls
HHH in recursive emulation such that HHH emulates itself
emulating DDD.
** According to the semantics of the x86 language.
This prevents the correctly emulated** DDD from ever
reaching its final halt state no matter what HHH does.
On 9/2/2024 12:52 PM, Fred. Zwarts wrote:Then it is unsuited to the halting problem.
Op 02.sep.2024 om 18:38 schreef olcott:
A halt decider never ever computes the mapping for the computation
that itself is contained within.
Why is the abort not simulated?Indeed, it should simulate *itself* and not a hypothetical other HHH
with different behaviour.
If HHH includes code to see a 'special condition' and aborts and halts,
then it should also simulate the HHH that includes this same code and
DDD has itself and the emulated HHH stuck in recursive emulation.
When HHH emulates itself emulating DDD the emulated HHH cannot possibly return because each DDD keeps calling HHH to emulate itself again until
the outer executed HHH kills the whole emulated process at the very
first emulated DDD before it ever reaches its own second line.
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
On 9/2/2024 12:52 PM, Fred. Zwarts wrote:Which DDD does not.
Op 02.sep.2024 om 18:38 schreef olcott:
A halt decider is a Turing machine that computes the mapping from its
finite string input to the behavior that this finite string specifies.
If the finite string machine string machine description specifies that
it cannot possibly reach its own final halt state then this machine
description specifies non-halting behavior.
Then it is not total.A halt decider never ever computes the mapping for the computation
that itself is contained within.
Which makes this pathological input a counterexample.Unless there is a pathological relationship between the halt decider H
and its input D the direct execution of this input D will always have
identical behavior to D correctly simulated by simulating halt decider
H.
It is not simulating the abort because of a static variable. Why?It is emulating the exact same freaking machine code that the x86utm operating system is emulating.A correct emulation of DDD by HHH only requires that HHH emulate theIndeed, it should simulate *itself* and not a hypothetical other HHH
instructions of DDD** including when DDD calls HHH in recursive
emulation such that HHH emulates itself emulating DDD.
with different behaviour.
Your HHH incorrectly changes behaviour.If HHH includes code to see a 'special condition' and aborts and halts,DDD has itself and the emulated HHH stuck in recursive emulation.
then it should also simulate the HHH that includes this same code and
On 9/3/2024 9:42 AM, joes wrote:But DDD halts, so it „specifies halting behaviour”.
Am Mon, 02 Sep 2024 16:06:24 -0500 schrieb olcott:DDD emulated by HHH cannot possibly reach its final halt state no matter
On 9/2/2024 12:52 PM, Fred. Zwarts wrote:Which DDD does not.
Op 02.sep.2024 om 18:38 schreef olcott:
A halt decider is a Turing machine that computes the mapping from
its finite string input to the behavior that this finite string
specifies.
If the finite string machine string machine description specifies
that it cannot possibly reach its own final halt state then this
machine description specifies non-halting behavior.
what HHH does.
How? It should work for all inputs.Yes it is you are wrong.Then it is not total.A halt decider never ever computes the mapping for the computation
that itself is contained within.
… a counterexample to the false assumption that a decider exists.Which makes the pathological input a counter-example to the falseWhich makes this pathological input a counterexample.Unless there is a pathological relationship between the halt decider >>>>> H and its input D the direct execution of this input D will always
have identical behavior to D correctly simulated by simulating halt
decider H.
assumption that the direct execution of a machine always has the same behavior as the machine simulated by its pathological simulator.
I don’t understand what this is supposed to explain? The output isvoid DDD()It is not simulating the abort because of a static variable. Why?It is emulating the exact same freaking machine code that the x86utmA correct emulation of DDD by HHH only requires that HHH emulate the >>>>> instructions of DDD** including when DDD calls HHH in recursiveIndeed, it should simulate *itself* and not a hypothetical other HHH
emulation such that HHH emulates itself emulating DDD.
with different behaviour.
operating system is emulating.
{
HHH(DDD);
OutputString("This code is unreachable by DDD emulated by HHH");
}
Have you fixed the Root bug?No you are wrong !!!Your HHH incorrectly changes behaviour.If HHH includes code to see a 'special condition' and aborts andDDD has itself and the emulated HHH stuck in recursive emulation.
halts,
then it should also simulate the HHH that includes this same code and
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
A halt decider needn't compute the full behaviour, only whether
that behaviour is finite or infinite.
void DDD()
{
HHH(DDD);
return;
}
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
Hence HHH(DDD)==0 is correct
On 9/3/2024 9:42 AM, joes wrote:
Am Mon, 02 Sep 2024 16:06:24 -0500 schrieb olcott:
On 9/2/2024 12:52 PM, Fred. Zwarts wrote:Which DDD does not.
Op 02.sep.2024 om 18:38 schreef olcott:
A halt decider is a Turing machine that computes the mapping from its >>>>> finite string input to the behavior that this finite string specifies. >>>>> If the finite string machine string machine description specifies that >>>>> it cannot possibly reach its own final halt state then this machine
description specifies non-halting behavior.
DDD emulated by HHH cannot possibly reach
its final halt state no matter what HHH does.
Then it is not total.A halt decider never ever computes the mapping for the computation
that itself is contained within.
Yes it is you are wrong.
Which makes this pathological input a counterexample.Unless there is a pathological relationship between the halt decider H >>>>> and its input D the direct execution of this input D will always have >>>>> identical behavior to D correctly simulated by simulating halt decider >>>>> H.
Which makes the pathological input a counter-example
to the false assumption that the direct execution of
a machine always has the same behavior as the machine
simulated by its pathological simulator.
It is emulating the exact same freaking machine code that the x86utmA correct emulation of DDD by HHH only requires that HHH emulate the >>>>> instructions of DDD** including when DDD calls HHH in recursiveIndeed, it should simulate *itself* and not a hypothetical other HHH
emulation such that HHH emulates itself emulating DDD.
with different behaviour.
operating system is emulating.
It is not simulating the abort because of a static variable. Why?
void DDD()
{
HHH(DDD);
OutputString("This code is unreachable by DDD emulated by HHH");
}
If HHH includes code to see a 'special condition' and aborts and halts, >>>> then it should also simulate the HHH that includes this same code andDDD has itself and the emulated HHH stuck in recursive emulation.
Your HHH incorrectly changes behaviour.
No you are wrong !!!
On 9/3/2024 2:07 AM, Fred. Zwarts wrote:The simulator is not allowed to change the behaviour of the input. Not
Op 02.sep.2024 om 23:06 schreef olcott:
On 9/2/2024 12:52 PM, Fred. Zwarts wrote:
Op 02.sep.2024 om 18:38 schreef olcott:
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
If the finite string machine string machine
description specifies that it cannot possibly
reach its own final halt state then this machine
description specifies non-halting behavior.
A halt decider never ever computes the mapping
for the computation that itself is contained within.
Unless there is a pathological relationship between
the halt decider H and its input D the direct execution
of this input D will always have identical behavior to
D correctly simulated by simulating halt decider H.
*Simulating Termination Analyzer H Not Fooled by Pathological Input D* >>>>> https://www.researchgate.net/
publication/369971402_Simulating_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
A correct emulation of DDD by HHH only requires that HHH
emulate the instructions of DDD** including when DDD calls
HHH in recursive emulation such that HHH emulates itself
emulating DDD.
Indeed, it should simulate *itself* and not a hypothetical other HHH
with different behaviour.
It is emulating the exact same freaking machine code
that the x86utm operating system is emulating.
Even the best simulator will go wrong if it is given the wrong input.
That is a stupid thing to say, you can see it was
given the correct input.
On 9/3/2024 2:01 PM, joes wrote:HHH *tries* to simulate itself, but it fails to reach the end of its
Am Tue, 03 Sep 2024 13:40:08 -0500 schrieb olcott:
On 9/3/2024 9:42 AM, joes wrote:But DDD halts, so it „specifies halting behaviour”.
Am Mon, 02 Sep 2024 16:06:24 -0500 schrieb olcott:DDD emulated by HHH cannot possibly reach its final halt state no matter >>> what HHH does.
On 9/2/2024 12:52 PM, Fred. Zwarts wrote:Which DDD does not.
Op 02.sep.2024 om 18:38 schreef olcott:
A halt decider is a Turing machine that computes the mapping from >>>>>>> its finite string input to the behavior that this finite string
specifies.
If the finite string machine string machine description specifies >>>>>>> that it cannot possibly reach its own final halt state then this >>>>>>> machine description specifies non-halting behavior.
HHH can’t simulate itself.
HHH does simulate itself simulating DDD
why do you insist on lying about this?
https://github.com/plolcott/x86utm/blob/master/Halt7.c
On 9/3/2024 2:15 AM, Fred. Zwarts wrote:
Op 03.sep.2024 om 00:22 schreef olcott:
On 9/2/2024 12:52 PM, Fred. Zwarts wrote:
Op 02.sep.2024 om 18:38 schreef olcott:
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
If the finite string machine string machine
description specifies that it cannot possibly
reach its own final halt state then this machine
description specifies non-halting behavior.
A halt decider never ever computes the mapping
for the computation that itself is contained within.
Unless there is a pathological relationship between
the halt decider H and its input D the direct execution
of this input D will always have identical behavior to
D correctly simulated by simulating halt decider H.
*Simulating Termination Analyzer H Not Fooled by Pathological Input D* >>>>> https://www.researchgate.net/
publication/369971402_Simulating_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
A correct emulation of DDD by HHH only requires that HHH
emulate the instructions of DDD** including when DDD calls
HHH in recursive emulation such that HHH emulates itself
emulating DDD.
Indeed, it should simulate *itself* and not a hypothetical other HHH
with different behaviour.
If HHH includes code to see a 'special condition' and aborts and
halts, then it should also simulate the HHH that includes this same
code and
DDD has itself and the emulated HHH stuck in recursive emulation.
void DDD()
{
HHH(DDD);
return;
}
It is not DDD. It is HHH that has the problem when trying to simulate
itself.
It does this correctly yet beyond your intellectual capacity.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
Instructions from machine address 00002172 through
machine address 0000217a are emulated.
What instruction of DDD do you believe comes next?
On 9/4/2024 4:38 AM, Fred. Zwarts wrote:
Op 03.sep.2024 om 22:25 schreef olcott:
On 9/3/2024 2:01 PM, joes wrote:HHH *tries* to simulate itself, but it fails to reach the end of its
Am Tue, 03 Sep 2024 13:40:08 -0500 schrieb olcott:
On 9/3/2024 9:42 AM, joes wrote:But DDD halts, so it „specifies halting behaviour”.
Am Mon, 02 Sep 2024 16:06:24 -0500 schrieb olcott:DDD emulated by HHH cannot possibly reach its final halt state no
On 9/2/2024 12:52 PM, Fred. Zwarts wrote:Which DDD does not.
Op 02.sep.2024 om 18:38 schreef olcott:
A halt decider is a Turing machine that computes the mapping from >>>>>>>>> its finite string input to the behavior that this finite string >>>>>>>>> specifies.
If the finite string machine string machine description specifies >>>>>>>>> that it cannot possibly reach its own final halt state then this >>>>>>>>> machine description specifies non-halting behavior.
matter
what HHH does.
HHH can’t simulate itself.
HHH does simulate itself simulating DDD
why do you insist on lying about this?
https://github.com/plolcott/x86utm/blob/master/Halt7.c
simulation of the halting program.
The source code proves otherwise that you are not bright
enough to understand this code is no rebuttal at all.
This is a failure of the simulator, which Olcott uses to claim that
the input has changed its behaviour. But it is clear that the
behaviour of the program described by the finite string is completely
fixed by the semantics of the x86 language and does not change by
incorrect simulations.
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
A halt decider needn't compute the full behaviour, only whether
that behaviour is finite or infinite.
void DDD()
{
HHH(DDD);
return;
}
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
Hence HHH(DDD)==0 is correct
On 9/4/2024 4:34 AM, Fred. Zwarts wrote:
Op 03.sep.2024 om 20:40 schreef olcott:
On 9/3/2024 9:42 AM, joes wrote:
Am Mon, 02 Sep 2024 16:06:24 -0500 schrieb olcott:
On 9/2/2024 12:52 PM, Fred. Zwarts wrote:Which DDD does not.
Op 02.sep.2024 om 18:38 schreef olcott:
A halt decider is a Turing machine that computes the mapping from >>>>>>> its
finite string input to the behavior that this finite string
specifies.
If the finite string machine string machine description specifies >>>>>>> that
it cannot possibly reach its own final halt state then this machine >>>>>>> description specifies non-halting behavior.
DDD emulated by HHH cannot possibly reach
its final halt state no matter what HHH does.
Then it is not total.A halt decider never ever computes the mapping for the computation >>>>>>> that itself is contained within.
Yes it is you are wrong.
Which makes this pathological input a counterexample.Unless there is a pathological relationship between the halt
decider H
and its input D the direct execution of this input D will always >>>>>>> have
identical behavior to D correctly simulated by simulating halt
decider
H.
Which makes the pathological input a counter-example
to the false assumption that the direct execution of
a machine always has the same behavior as the machine
simulated by its pathological simulator.
It is emulating the exact same freaking machine code that the x86utm >>>>> operating system is emulating.A correct emulation of DDD by HHH only requires that HHH emulate the >>>>>>> instructions of DDD** including when DDD calls HHH in recursiveIndeed, it should simulate *itself* and not a hypothetical other HHH >>>>>> with different behaviour.
emulation such that HHH emulates itself emulating DDD.
It is not simulating the abort because of a static variable. Why?
void DDD()
{
HHH(DDD);
OutputString("This code is unreachable by DDD emulated by HHH");
}
If HHH includes code to see a 'special condition' and aborts and
halts,
then it should also simulate the HHH that includes this same code and >>>>> DDD has itself and the emulated HHH stuck in recursive emulation.
Your HHH incorrectly changes behaviour.
No you are wrong !!!
Yes it does. HHH simulates only a few recursions, then it sees a
'special condition', stops the simulation, returns to DDD and DDD halts.
void DDD()
{
HHH(DDD); // Fred lacks the software engineering skill to understand
OutputString("This code is unreachable from DDD emulated by HHH");
}
On 9/4/2024 4:38 AM, Fred. Zwarts wrote:
Op 03.sep.2024 om 22:25 schreef olcott:
On 9/3/2024 2:01 PM, joes wrote:HHH *tries* to simulate itself, but it fails to reach the end of its
Am Tue, 03 Sep 2024 13:40:08 -0500 schrieb olcott:
On 9/3/2024 9:42 AM, joes wrote:But DDD halts, so it „specifies halting behaviour”.
Am Mon, 02 Sep 2024 16:06:24 -0500 schrieb olcott:DDD emulated by HHH cannot possibly reach its final halt state no
On 9/2/2024 12:52 PM, Fred. Zwarts wrote:Which DDD does not.
Op 02.sep.2024 om 18:38 schreef olcott:
A halt decider is a Turing machine that computes the mapping from >>>>>>>>> its finite string input to the behavior that this finite string >>>>>>>>> specifies.
If the finite string machine string machine description specifies >>>>>>>>> that it cannot possibly reach its own final halt state then this >>>>>>>>> machine description specifies non-halting behavior.
matter
what HHH does.
HHH can’t simulate itself.
HHH does simulate itself simulating DDD
why do you insist on lying about this?
https://github.com/plolcott/x86utm/blob/master/Halt7.c
simulation of the halting program.
The source code proves otherwise that you are not bright
enough to understand this code is no rebuttal at all.
On 9/4/2024 4:50 AM, Fred. Zwarts wrote:
Op 03.sep.2024 om 15:29 schreef olcott:
On 9/3/2024 2:15 AM, Fred. Zwarts wrote:
Op 03.sep.2024 om 00:22 schreef olcott:
On 9/2/2024 12:52 PM, Fred. Zwarts wrote:
Op 02.sep.2024 om 18:38 schreef olcott:
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
If the finite string machine string machine
description specifies that it cannot possibly
reach its own final halt state then this machine
description specifies non-halting behavior.
A halt decider never ever computes the mapping
for the computation that itself is contained within.
Unless there is a pathological relationship between
the halt decider H and its input D the direct execution
of this input D will always have identical behavior to
D correctly simulated by simulating halt decider H.
*Simulating Termination Analyzer H Not Fooled by Pathological
Input D*
https://www.researchgate.net/
publication/369971402_Simulating_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
A correct emulation of DDD by HHH only requires that HHH
emulate the instructions of DDD** including when DDD calls
HHH in recursive emulation such that HHH emulates itself
emulating DDD.
Indeed, it should simulate *itself* and not a hypothetical other
HHH with different behaviour.
If HHH includes code to see a 'special condition' and aborts and
halts, then it should also simulate the HHH that includes this
same code and
DDD has itself and the emulated HHH stuck in recursive emulation.
void DDD()
{
HHH(DDD);
return;
}
It is not DDD. It is HHH that has the problem when trying to
simulate itself.
Olcott removed the proof that I am right:
int main() {
return HHH(main);
}
where HHH halts, but claims that it does not halt. No DDD needed to
prove that HHH reports false negatives.
Since he cannot prove that I am wrong, he thinks an ad hominem attack
will help.
It does this correctly yet beyond your intellectual capacity.
Then he shows again the 'trace' of an incorrect simulation.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
Instructions from machine address 00002172 through
machine address 0000217a are emulated.
What instruction of DDD do you believe comes next?
Assuming a correct simulation:
The next instruction would be that at 000015d2 in HHH.
What instruction of DDD do you believe comes next?
What instruction
of DDD
of DDD
of DDD
of DDD
of DDD
do you believe comes next?
On 9/5/2024 2:34 AM, Mikko wrote:We have noticed.
On 2024-09-03 13:00:50 +0000, olcott said:DDD emulated by HHH never reaches it final halt state. It looks like I
On 9/3/2024 5:25 AM, Mikko wrote:Nice to see that you don't disagree with what said. Unvortunately I
On 2024-09-02 16:38:03 +0000, olcott said:
A halt decider is a Turing machine that computes the mapping from
its finite string input to the behavior that this finite string
specifies.
A halt decider needn't compute the full behaviour, only whether that
behaviour is finite or infinite.
can't agree with what you say.
HHH terminates, so DDD obviously terminates, too. No valid
C interpretaion of allows DDD to continue forever after HHH jas
terminated.
have to repeat this 10,000 times before anyone ever notices that I said
it at least once.
Show the details of how DDD emulated by HHH reaches its own machineBy HHH returning, which we are guaranteed from its definition as a
address 0000217f.
On 9/5/2024 10:57 AM, joes wrote:I don’t know, you claim it’s a decider!
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
How the F--- Does the emulated HHH return?Show the details of how DDD emulated by HHH reaches its own machineBy HHH returning, which we are guaranteed from its definition as a
address 0000217f.
decider.
On 9/5/2024 11:34 AM, joes wrote:It is very well known by this point.
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott:You KEEP TRYING TO CHEAT by erasing the context !!!
On 9/5/2024 10:57 AM, joes wrote:I don’t know, you claim it’s a decider!
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
How the F--- Does the emulated HHH return?Show the details of how DDD emulated by HHH reaches its own machineBy HHH returning, which we are guaranteed from its definition as a
address 0000217f.
decider.
DDD emulated by HHH CANNOT POSSIBLY reach its own machine addressOnly HHH can’t simulate it.
0000217f.
The directly executed HHH correctly determines that its emulated DDDWhy doesn’t the simulated HHH abort?
must be aborted because DDD keeps *THE EMULATED HHH* stuck in recursive emulation.
On 9/5/2024 11:56 AM, joes wrote:But why does HHH halt and return that itself doesn’t halt?
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott:
On 9/5/2024 11:34 AM, joes wrote:
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott:
On 9/5/2024 10:57 AM, joes wrote:I don’t know, you claim it’s a decider!
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
How the F--- Does the emulated HHH return?Show the details of how DDD emulated by HHH reaches its ownBy HHH returning, which we are guaranteed from its definition as a >>>>>> decider.
machine address 0000217f.
The first HHH cannot wait for its HHH to abort which is waiting for itsDDD emulated by HHH CANNOT POSSIBLY reach its own machine addressOnly HHH can’t simulate it.
0000217f.
The directly executed HHH correctly determines that its emulated DDDWhy doesn’t the simulated HHH abort?
must be aborted because DDD keeps *THE EMULATED HHH* stuck in
recursive emulation.
HHH to abort on and on with no HHH ever aborting.
On 9/5/2024 12:22 PM, joes wrote:I smell evasion but fine, I understand that HHH cannot wait.
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott:
On 9/5/2024 11:56 AM, joes wrote:
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott:
On 9/5/2024 11:34 AM, joes wrote:
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott:
On 9/5/2024 10:57 AM, joes wrote:
First agree that you understand the first part so that we don'tBut why does HHH halt and return that itself doesn’t halt?The first HHH cannot wait for its HHH to abort which is waiting forThe directly executed HHH correctly determines that its emulated DDD >>>>> must be aborted because DDD keeps *THE EMULATED HHH* stuck inWhy doesn’t the simulated HHH abort?
recursive emulation.
its HHH to abort on and on with no HHH ever aborting.
endlessly digress away from the point.
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
A halt decider needn't compute the full behaviour, only whether
that behaviour is finite or infinite.
void DDD()
{
HHH(DDD);
return;
}
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
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
It looks like I have to repeat this 10,000 times before
anyone ever notices that I said it at least once.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
Show the details of how DDD emulated by HHH
reaches its own machine address 0000217f.
00002172, 00002173, 00002175, 0000217a calls HHH(DDD)
then
00002172, 00002173, 00002175, 0000217a calls HHH(DDD)...
C interpretaion of allows DDD to continue forever after
HHH jas terminated.
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
A halt decider needn't compute the full behaviour, only whether
that behaviour is finite or infinite.
void DDD()
{
HHH(DDD);
return;
}
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
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
It looks like I have to repeat this 10,000 times before
anyone ever notices that I said it at least once.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
Show the details of how DDD emulated by HHH
reaches its own machine address 0000217f.
00002172, 00002173, 00002175, 0000217a calls HHH(DDD)
then
00002172, 00002173, 00002175, 0000217a calls HHH(DDD)...
On 9/5/2024 11:56 AM, joes wrote:
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott:
On 9/5/2024 11:34 AM, joes wrote:It is very well known by this point.
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott:You KEEP TRYING TO CHEAT by erasing the context !!!
On 9/5/2024 10:57 AM, joes wrote:I don’t know, you claim it’s a decider!
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
How the F--- Does the emulated HHH return?Show the details of how DDD emulated by HHH reaches its own machine >>>>>>> address 0000217f.By HHH returning, which we are guaranteed from its definition as a >>>>>> decider.
DDD emulated by HHH CANNOT POSSIBLY reach its own machine addressOnly HHH can’t simulate it.
0000217f.
The directly executed HHH correctly determines that its emulated DDDWhy doesn’t the simulated HHH abort?
must be aborted because DDD keeps *THE EMULATED HHH* stuck in recursive
emulation.
The first HHH cannot wait for its HHH to abort
which is waiting for its HHH to abort on and on
with no HHH ever aborting.
On 9/5/2024 11:34 AM, joes wrote:
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott:
On 9/5/2024 10:57 AM, joes wrote:I don’t know, you claim it’s a decider!
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
How the F--- Does the emulated HHH return?Show the details of how DDD emulated by HHH reaches its own machineBy HHH returning, which we are guaranteed from its definition as a
address 0000217f.
decider.
You KEEP TRYING TO CHEAT by erasing the context !!!
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
00002172, 00002173, 00002175, 0000217a calls HHH(DDD)
then
00002172, 00002173, 00002175, 0000217a calls HHH(DDD)...
DDD emulated by HHH CANNOT POSSIBLY reach its own
machine address 0000217f.
The directly executed HHH correctly determines that
its emulated DDD must be aborted because DDD keeps
*THE EMULATED HHH* stuck in recursive emulation.
On 9/5/2024 5:24 AM, Fred. Zwarts wrote:
Op 04.sep.2024 om 15:06 schreef olcott:
On 9/4/2024 4:38 AM, Fred. Zwarts wrote:Olcott's only rebuttal is a ad hominem attacks.
Op 03.sep.2024 om 22:25 schreef olcott:
On 9/3/2024 2:01 PM, joes wrote:HHH *tries* to simulate itself, but it fails to reach the end of its
Am Tue, 03 Sep 2024 13:40:08 -0500 schrieb olcott:
On 9/3/2024 9:42 AM, joes wrote:But DDD halts, so it „specifies halting behaviour”.
Am Mon, 02 Sep 2024 16:06:24 -0500 schrieb olcott:DDD emulated by HHH cannot possibly reach its final halt state no >>>>>>> matter
On 9/2/2024 12:52 PM, Fred. Zwarts wrote:Which DDD does not.
Op 02.sep.2024 om 18:38 schreef olcott:
A halt decider is a Turing machine that computes the mapping >>>>>>>>>>> from
its finite string input to the behavior that this finite string >>>>>>>>>>> specifies.
If the finite string machine string machine description
specifies
that it cannot possibly reach its own final halt state then this >>>>>>>>>>> machine description specifies non-halting behavior.
what HHH does.
HHH can’t simulate itself.
HHH does simulate itself simulating DDD
why do you insist on lying about this?
https://github.com/plolcott/x86utm/blob/master/Halt7.c
simulation of the halting program.
The source code proves otherwise that you are not bright
enough to understand this code is no rebuttal at all.
No evidence for another incorrect claim.
Even olcott agreed that HHH cannot reach the end of DDD and now he
contradicts himself.
DDD emulated by HHH never reaches it final halt state.
It looks like I have to repeat this 10,000 times before
anyone ever notices that I said it at least once.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
Show the details of how DDD emulated by HHH
reaches its own machine address 0000217f.
00002172, 00002173, 00002175, 0000217a calls HHH(DDD)
then
00002172, 00002173, 00002175, 0000217a calls HHH(DDD)...
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
A halt decider needn't compute the full behaviour, only whether
that behaviour is finite or infinite.
void DDD()
{
HHH(DDD);
return;
}
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
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
On 9/6/2024 4:24 AM, Fred. Zwarts wrote:
Op 05.sep.2024 om 19:17 schreef olcott:
On 9/5/2024 11:56 AM, joes wrote:
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott:
On 9/5/2024 11:34 AM, joes wrote:It is very well known by this point.
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott:You KEEP TRYING TO CHEAT by erasing the context !!!
On 9/5/2024 10:57 AM, joes wrote:I don’t know, you claim it’s a decider!
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
How the F--- Does the emulated HHH return?Show the details of how DDD emulated by HHH reaches its ownBy HHH returning, which we are guaranteed from its definition as a >>>>>>>> decider.
machine
address 0000217f.
DDD emulated by HHH CANNOT POSSIBLY reach its own machine addressOnly HHH can’t simulate it.
0000217f.
The directly executed HHH correctly determines that its emulated DDD >>>>> must be aborted because DDD keeps *THE EMULATED HHH* stuck inWhy doesn’t the simulated HHH abort?
recursive
emulation.
The first HHH cannot wait for its HHH to abort
which is waiting for its HHH to abort on and on
with no HHH ever aborting.
Indeed! There is no way to make HHH correct for all inputs, in
particular not for the input that uses HHH's algorithm.
CORRECT MEANS DO WHATEVER THE X86 CODE SAYS
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
Show the details of how DDD emulated by HHH
reaches its own machine address 0000217f.
00002172, 00002173, 00002175, 0000217a calls HHH(DDD)
then
00002172, 00002173, 00002175, 0000217a calls HHH(DDD)...
WHAT SHOULD THE NEXT STEPS BE?
On 9/6/2024 6:19 AM, Mikko wrote:
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
A halt decider needn't compute the full behaviour, only whether
that behaviour is finite or infinite.
void DDD()
{
HHH(DDD);
return;
}
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
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return
and therefore is not a ceicder.
The directly executed HHH is a decider.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
Show the details of how DDD emulated by HHH
reaches its own machine address 0000217f.
00002172, 00002173, 00002175, 0000217a calls HHH(DDD)
then
00002172, 00002173, 00002175, 0000217a calls HHH(DDD)...
WHAT SHOULD THE NEXT STEPS BE?
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation
A halt decider is a Turing machine that computes the mapping from >>>>>>> its finite string input to the behavior that this finite string
specifies.
A halt decider needn't compute the full behaviour, only whether
that behaviour is finite or infinite.
The directly executed HHH is a decider.Local Halt Decider: Infinite Recursion Detected Simulation Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return and
therefore is not a ceicder.
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation
A halt decider is a Turing machine that computes the mapping from >>>>>>>> its finite string input to the behavior that this finite string >>>>>>>> specifies.
A halt decider needn't compute the full behaviour, only whether
that behaviour is finite or infinite.
What does simulating it change about that?The directly executed HHH is a decider.Local Halt Decider: Infinite Recursion Detected Simulation Stopped >>>>>>
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return and
therefore is not a ceicder.
On 9/6/2024 6:19 AM, Mikko wrote:
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
A halt decider needn't compute the full behaviour, only whether
that behaviour is finite or infinite.
void DDD()
{
HHH(DDD);
return;
}
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
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return
and therefore is not a ceicder.
The directly executed HHH is a decider.
On 9/6/2024 6:19 AM, Mikko wrote:
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
A halt decider needn't compute the full behaviour, only whether
that behaviour is finite or infinite.
void DDD()
{
HHH(DDD);
return;
}
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
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return
and therefore is not a ceicder.
The directly executed HHH is a decider.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
Show the details of how DDD emulated by HHH
reaches its own machine address 0000217f.
00002172, 00002173, 00002175, 0000217a calls HHH(DDD)
then
00002172, 00002173, 00002175, 0000217a calls HHH(DDD)...
WHAT SHOULD THE NEXT STEPS BE?
On 9/5/2024 5:24 AM, Fred. Zwarts wrote:
Op 04.sep.2024 om 15:06 schreef olcott:
On 9/4/2024 4:38 AM, Fred. Zwarts wrote:Olcott's only rebuttal is a ad hominem attacks.
Op 03.sep.2024 om 22:25 schreef olcott:
On 9/3/2024 2:01 PM, joes wrote:HHH *tries* to simulate itself, but it fails to reach the end of its
Am Tue, 03 Sep 2024 13:40:08 -0500 schrieb olcott:
On 9/3/2024 9:42 AM, joes wrote:But DDD halts, so it „specifies halting behaviour”.
Am Mon, 02 Sep 2024 16:06:24 -0500 schrieb olcott:DDD emulated by HHH cannot possibly reach its final halt state no >>>>>>> matter
On 9/2/2024 12:52 PM, Fred. Zwarts wrote:Which DDD does not.
Op 02.sep.2024 om 18:38 schreef olcott:
A halt decider is a Turing machine that computes the mapping >>>>>>>>>>> from
its finite string input to the behavior that this finite string >>>>>>>>>>> specifies.
If the finite string machine string machine description
specifies
that it cannot possibly reach its own final halt state then this >>>>>>>>>>> machine description specifies non-halting behavior.
what HHH does.
HHH can’t simulate itself.
HHH does simulate itself simulating DDD
why do you insist on lying about this?
https://github.com/plolcott/x86utm/blob/master/Halt7.c
simulation of the halting program.
The source code proves otherwise that you are not bright
enough to understand this code is no rebuttal at all.
No evidence for another incorrect claim.
Even olcott agreed that HHH cannot reach the end of DDD and now he
contradicts himself.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
Show the details of how DDD emulated by HHH
reaches its own machine address 0000217f.
00002172, 00002173, 00002175, 0000217a calls HHH(DDD)
then
00002172, 00002173, 00002175, 0000217a calls HHH(DDD)...
WHAT SHOULD THE NEXT STEPS BE?
On 9/6/2024 4:24 AM, Fred. Zwarts wrote:
Op 05.sep.2024 om 19:17 schreef olcott:
On 9/5/2024 11:56 AM, joes wrote:
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott:
On 9/5/2024 11:34 AM, joes wrote:It is very well known by this point.
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott:You KEEP TRYING TO CHEAT by erasing the context !!!
On 9/5/2024 10:57 AM, joes wrote:I don’t know, you claim it’s a decider!
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
How the F--- Does the emulated HHH return?Show the details of how DDD emulated by HHH reaches its ownBy HHH returning, which we are guaranteed from its definition as a >>>>>>>> decider.
machine
address 0000217f.
DDD emulated by HHH CANNOT POSSIBLY reach its own machine addressOnly HHH can’t simulate it.
0000217f.
The directly executed HHH correctly determines that its emulated DDD >>>>> must be aborted because DDD keeps *THE EMULATED HHH* stuck inWhy doesn’t the simulated HHH abort?
recursive
emulation.
The first HHH cannot wait for its HHH to abort
which is waiting for its HHH to abort on and on
with no HHH ever aborting.
Indeed! There is no way to make HHH correct for all inputs, in
particular not for the input that uses HHH's algorithm.
CORRECT MEANS DO WHATEVER THE X86 CODE SAYS
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
Show the details of how DDD emulated by HHH
reaches its own machine address 0000217f.
00002172, 00002173, 00002175, 0000217a calls HHH(DDD)
then
00002172, 00002173, 00002175, 0000217a calls HHH(DDD)...
WHAT SHOULD THE NEXT STEPS BE?
On 9/5/2024 2:41 PM, joes wrote:That’s on you to believe. I can’t prove it.
Am Thu, 05 Sep 2024 13:10:13 -0500 schrieb olcott:Do you really understand this?
On 9/5/2024 12:22 PM, joes wrote:I smell evasion but fine, I understand that HHH cannot wait.
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott:
On 9/5/2024 11:56 AM, joes wrote:
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott:
On 9/5/2024 11:34 AM, joes wrote:
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott:
On 9/5/2024 10:57 AM, joes wrote:
First agree that you understand the first part so that we don'tBut why does HHH halt and return that itself doesn’t halt?The first HHH cannot wait for its HHH to abort which is waiting forThe directly executed HHH correctly determines that its emulated >>>>>>> DDD must be aborted because DDD keeps *THE EMULATED HHH* stuck in >>>>>>> recursive emulation.Why doesn’t the simulated HHH abort?
its HHH to abort on and on with no HHH ever aborting.
endlessly digress away from the point.
It took far too long to get to this point we cannot simply drop itI’m a bit surprised that you expect I would suddenly do a 180 in my argumentation.
without complete closure before moving on.
<MIT Professor Sipser agreed to ONLY these verbatim words 10/13/2022>No, which criterion? The if-clause isn’t met; it’s only saying a
If simulating halt decider H correctly simulates its input D until
H correctly determines that its simulated D would never stop
running unless aborted then
Thus this criteria has been met.
Do you understand this?
We cannot move to any next point until after we finish this point.Move on to what? I would like some diversion.
On 9/5/2024 2:41 PM, joes wrote:
Am Thu, 05 Sep 2024 13:10:13 -0500 schrieb olcott:
On 9/5/2024 12:22 PM, joes wrote:I smell evasion but fine, I understand that HHH cannot wait.
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott:
On 9/5/2024 11:56 AM, joes wrote:
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott:
On 9/5/2024 11:34 AM, joes wrote:
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott:
On 9/5/2024 10:57 AM, joes wrote:
First agree that you understand the first part so that we don'tBut why does HHH halt and return that itself doesn’t halt?The first HHH cannot wait for its HHH to abort which is waiting forThe directly executed HHH correctly determines that its emulated DDD >>>>>>> must be aborted because DDD keeps *THE EMULATED HHH* stuck inWhy doesn’t the simulated HHH abort?
recursive emulation.
its HHH to abort on and on with no HHH ever aborting.
endlessly digress away from the point.
I will never respond to you again in a million
years until after we get closure on this point.
I am going to be dead relatively soon thus cannot
and will not tolerate the change-the-subject
dishonest rebuttal that wasted 15 years with Ben.
Do you really understand this?
It took far too long to get to this point we cannot simply
drop it without complete closure before moving on.
<MIT Professor Sipser agreed to ONLY these verbatim words 10/13/2022>
If simulating halt decider H correctly simulates its input D
until H correctly determines that its simulated D would never
stop running unless aborted then
Thus this criteria has been met.
On 9/5/2024 12:22 PM, joes wrote:
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott:
On 9/5/2024 11:56 AM, joes wrote:But why does HHH halt and return that itself doesn’t halt?
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott:
On 9/5/2024 11:34 AM, joes wrote:
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott:
On 9/5/2024 10:57 AM, joes wrote:I don’t know, you claim it’s a decider!
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
How the F--- Does the emulated HHH return?Show the details of how DDD emulated by HHH reaches its ownBy HHH returning, which we are guaranteed from its definition as a >>>>>>>> decider.
machine address 0000217f.
The first HHH cannot wait for its HHH to abort which is waiting for itsDDD emulated by HHH CANNOT POSSIBLY reach its own machine addressOnly HHH can’t simulate it.
0000217f.
The directly executed HHH correctly determines that its emulated DDD >>>>> must be aborted because DDD keeps *THE EMULATED HHH* stuck inWhy doesn’t the simulated HHH abort?
recursive emulation.
HHH to abort on and on with no HHH ever aborting.
When HHH is waiting for the next HHH
which is waiting for the next HHH
which is waiting for the next HHH...
we have an infinite chain of waiting and never aborting.
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation
A halt decider is a Turing machine that computes the mapping from >>>>>>>>>> its finite string input to the behavior that this finite string >>>>>>>>>> specifies.
A halt decider needn't compute the full behaviour, only whether >>>>>>>>> that behaviour is finite or infinite.
The directly executed HHH is a decider.Local Halt Decider: Infinite Recursion Detected Simulation Stopped >>>>>>>>
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return and >>>>> therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
On 9/7/2024 3:27 AM, Mikko wrote:
On 2024-09-06 11:42:48 +0000, olcott said:
On 9/6/2024 6:19 AM, Mikko wrote:
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
A halt decider needn't compute the full behaviour, only whether >>>>>>>> that behaviour is finite or infinite.
void DDD()
{
HHH(DDD);
return;
}
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 >>>>>>>
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return
and therefore is not a ceicder.
The directly executed HHH is a decider.
If the called HHH behaves differently from the direcly executed HHH
then the DDD is not relevant to classic proofs of the impossibility
of a halting decider.
If you can't show encoding rules that permit the encoidng of the
behaviour of the directly executed DDD to HHH then HHH is not a
halting decider.
I SHOW THE ACTUAL EXECUTION TRACE AND EVERYONE DISAGREES WITH IT.
On 9/5/2024 12:22 PM, joes wrote:Except for the outermost one.
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott:
On 9/5/2024 11:56 AM, joes wrote:
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott:
On 9/5/2024 11:34 AM, joes wrote:
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott:
On 9/5/2024 10:57 AM, joes wrote:
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
When HHH is waiting for the next HHH which is waiting for the next HHHBut why does HHH halt and return that itself doesn’t halt?The first HHH cannot wait for its HHH to abort which is waiting forThe directly executed HHH correctly determines that its emulated DDD >>>>> must be aborted because DDD keeps *THE EMULATED HHH* stuck inWhy doesn’t the simulated HHH abort?
recursive emulation.
its HHH to abort on and on with no HHH ever aborting.
which is waiting for the next HHH...
we have an infinite chain of waiting and never aborting.
On 9/7/2024 9:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:38:22 -0500 schrieb olcott:
On 9/5/2024 12:22 PM, joes wrote:Except for the outermost one.
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott:
On 9/5/2024 11:56 AM, joes wrote:
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott:
On 9/5/2024 11:34 AM, joes wrote:
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott:
On 9/5/2024 10:57 AM, joes wrote:
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
When HHH is waiting for the next HHH which is waiting for the next HHHBut why does HHH halt and return that itself doesn’t halt?The first HHH cannot wait for its HHH to abort which is waiting forThe directly executed HHH correctly determines that its emulated DDD >>>>>>> must be aborted because DDD keeps *THE EMULATED HHH* stuck inWhy doesn’t the simulated HHH abort?
recursive emulation.
its HHH to abort on and on with no HHH ever aborting.
which is waiting for the next HHH...
we have an infinite chain of waiting and never aborting.
When the outermost HHH is waiting for its emulated HHH
to abort and this emulated HHH is waiting on its emulated
HHH to abort on and on forever waiting and none ever abort.
On 9/7/2024 10:10 AM, Richard Damon wrote:
On 9/7/24 10:54 AM, olcott wrote:
On 9/7/2024 9:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:38:22 -0500 schrieb olcott:
On 9/5/2024 12:22 PM, joes wrote:Except for the outermost one.
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott:
On 9/5/2024 11:56 AM, joes wrote:
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott:
On 9/5/2024 11:34 AM, joes wrote:
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott:
On 9/5/2024 10:57 AM, joes wrote:
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
When HHH is waiting for the next HHH which is waiting for the next HHH >>>>> which is waiting for the next HHH...But why does HHH halt and return that itself doesn’t halt?The first HHH cannot wait for its HHH to abort which is waiting for >>>>>>> its HHH to abort on and on with no HHH ever aborting.The directly executed HHH correctly determines that itsWhy doesn’t the simulated HHH abort?
emulated DDD
must be aborted because DDD keeps *THE EMULATED HHH* stuck in >>>>>>>>> recursive emulation.
we have an infinite chain of waiting and never aborting.
When the outermost HHH is waiting for its emulated HHH
to abort and this emulated HHH is waiting on its emulated
HHH to abort on and on forever waiting and none ever abort.
Which only happens if HHH is defined in a way that it never aborts
this simulaiton, and that HHH isn't a correct decider.
That is NOT what Joes has been proposing.
Joes has been proposing that each HHH in the recursive chain
can wait until the next one aborts and that the abort will
still occur at the end of this infinite chain.
On 9/7/2024 11:20 AM, Richard Damon wrote:
On 9/7/24 11:47 AM, olcott wrote:
On 9/7/2024 10:32 AM, Richard Damon wrote:
On 9/7/24 11:14 AM, olcott wrote:
On 9/7/2024 10:10 AM, Richard Damon wrote:
On 9/7/24 10:54 AM, olcott wrote:
On 9/7/2024 9:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:38:22 -0500 schrieb olcott:
On 9/5/2024 12:22 PM, joes wrote:Except for the outermost one.
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott:
On 9/5/2024 11:56 AM, joes wrote:
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott:
On 9/5/2024 11:34 AM, joes wrote:
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott: >>>>>>>>>>>>>>> On 9/5/2024 10:57 AM, joes wrote:
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott: >>>>>>>>>>>>>>>>> On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said: >>>>>>>>>>>>>>>>>>> On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
which is waiting for the next HHH...But why does HHH halt and return that itself doesn’t halt? >>>>>>>>> When HHH is waiting for the next HHH which is waiting for the >>>>>>>>> next HHHThe first HHH cannot wait for its HHH to abort which isThe directly executed HHH correctly determines that its >>>>>>>>>>>>> emulated DDDWhy doesn’t the simulated HHH abort?
must be aborted because DDD keeps *THE EMULATED HHH* stuck in >>>>>>>>>>>>> recursive emulation.
waiting for
its HHH to abort on and on with no HHH ever aborting.
we have an infinite chain of waiting and never aborting.
When the outermost HHH is waiting for its emulated HHH
to abort and this emulated HHH is waiting on its emulated
HHH to abort on and on forever waiting and none ever abort.
Which only happens if HHH is defined in a way that it never aborts >>>>>> this simulaiton, and that HHH isn't a correct decider.
That is NOT what Joes has been proposing.
Joes has been proposing that each HHH in the recursive chain
can wait until the next one aborts and that the abort will
still occur at the end of this infinite chain.
No, he is pointing out that get the right answer, each HHH NEEDS to
wait for the previous one to get the right answer.
But, if to do so, it results in the definition of HHH that just
never aborts and thus HHH isn't a decider.
Not He, and stupidly waiting forever is stupid.
So, what do you think HHH can do to get the right answer,
No dishonestly changing the subject.
The subject is that Joes is wrong that HHH can wait
on another HHH to abort.
On 9/7/2024 10:32 AM, Richard Damon wrote:
On 9/7/24 11:14 AM, olcott wrote:
On 9/7/2024 10:10 AM, Richard Damon wrote:
On 9/7/24 10:54 AM, olcott wrote:
On 9/7/2024 9:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:38:22 -0500 schrieb olcott:
On 9/5/2024 12:22 PM, joes wrote:Except for the outermost one.
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott:
On 9/5/2024 11:56 AM, joes wrote:
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott:
On 9/5/2024 11:34 AM, joes wrote:
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott:
On 9/5/2024 10:57 AM, joes wrote:
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott: >>>>>>>>>>>>>>> On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
When HHH is waiting for the next HHH which is waiting for theBut why does HHH halt and return that itself doesn’t halt?The first HHH cannot wait for its HHH to abort which is waiting >>>>>>>>> forThe directly executed HHH correctly determines that itsWhy doesn’t the simulated HHH abort?
emulated DDD
must be aborted because DDD keeps *THE EMULATED HHH* stuck in >>>>>>>>>>> recursive emulation.
its HHH to abort on and on with no HHH ever aborting.
next HHH
which is waiting for the next HHH...
we have an infinite chain of waiting and never aborting.
When the outermost HHH is waiting for its emulated HHH
to abort and this emulated HHH is waiting on its emulated
HHH to abort on and on forever waiting and none ever abort.
Which only happens if HHH is defined in a way that it never aborts
this simulaiton, and that HHH isn't a correct decider.
That is NOT what Joes has been proposing.
Joes has been proposing that each HHH in the recursive chain
can wait until the next one aborts and that the abort will
still occur at the end of this infinite chain.
No, he is pointing out that get the right answer, each HHH NEEDS to
wait for the previous one to get the right answer.
But, if to do so, it results in the definition of HHH that just never
aborts and thus HHH isn't a decider.
Not He, and stupidly waiting forever is stupid.
On 9/7/2024 11:30 AM, Richard Damon wrote:
On 9/7/24 12:23 PM, olcott wrote:
On 9/7/2024 11:20 AM, Richard Damon wrote:
On 9/7/24 11:47 AM, olcott wrote:
On 9/7/2024 10:32 AM, Richard Damon wrote:
On 9/7/24 11:14 AM, olcott wrote:
On 9/7/2024 10:10 AM, Richard Damon wrote:
On 9/7/24 10:54 AM, olcott wrote:
On 9/7/2024 9:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:38:22 -0500 schrieb olcott:
On 9/5/2024 12:22 PM, joes wrote:Except for the outermost one.
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott:
On 9/5/2024 11:56 AM, joes wrote:
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott: >>>>>>>>>>>>>>> On 9/5/2024 11:34 AM, joes wrote:
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott: >>>>>>>>>>>>>>>>> On 9/5/2024 10:57 AM, joes wrote:
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott: >>>>>>>>>>>>>>>>>>> On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said: >>>>>>>>>>>>>>>>>>>>> On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
which is waiting for the next HHH...The first HHH cannot wait for its HHH to abort which is >>>>>>>>>>>>> waiting forThe directly executed HHH correctly determines that its >>>>>>>>>>>>>>> emulated DDDWhy doesn’t the simulated HHH abort?
must be aborted because DDD keeps *THE EMULATED HHH* >>>>>>>>>>>>>>> stuck in
recursive emulation.
its HHH to abort on and on with no HHH ever aborting. >>>>>>>>>>>> But why does HHH halt and return that itself doesn’t halt? >>>>>>>>>>> When HHH is waiting for the next HHH which is waiting for the >>>>>>>>>>> next HHH
we have an infinite chain of waiting and never aborting.
When the outermost HHH is waiting for its emulated HHH
to abort and this emulated HHH is waiting on its emulated
HHH to abort on and on forever waiting and none ever abort.
Which only happens if HHH is defined in a way that it never
aborts this simulaiton, and that HHH isn't a correct decider.
That is NOT what Joes has been proposing.
Joes has been proposing that each HHH in the recursive chain
can wait until the next one aborts and that the abort will
still occur at the end of this infinite chain.
No, he is pointing out that get the right answer, each HHH NEEDS
to wait for the previous one to get the right answer.
But, if to do so, it results in the definition of HHH that just
never aborts and thus HHH isn't a decider.
Not He, and stupidly waiting forever is stupid.
So, what do you think HHH can do to get the right answer,
No dishonestly changing the subject.
The subject is that Joes is wrong that HHH can wait
on another HHH to abort.
But it isn't a changing of the subject!
Can the outermost directly executed HHH wait for an
inner one to abort and still terminate normally.
(a) YES
(b) NO
On 9/7/2024 11:53 AM, Richard Damon wrote:
On 9/7/24 12:47 PM, olcott wrote:
On 9/7/2024 11:30 AM, Richard Damon wrote:
On 9/7/24 12:23 PM, olcott wrote:
On 9/7/2024 11:20 AM, Richard Damon wrote:
On 9/7/24 11:47 AM, olcott wrote:
On 9/7/2024 10:32 AM, Richard Damon wrote:
On 9/7/24 11:14 AM, olcott wrote:
On 9/7/2024 10:10 AM, Richard Damon wrote:
On 9/7/24 10:54 AM, olcott wrote:
On 9/7/2024 9:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:38:22 -0500 schrieb olcott:
On 9/5/2024 12:22 PM, joes wrote:
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott: >>>>>>>>>>>>>>> On 9/5/2024 11:56 AM, joes wrote:which is waiting for the next HHH...
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott: >>>>>>>>>>>>>>>>> On 9/5/2024 11:34 AM, joes wrote:The first HHH cannot wait for its HHH to abort which is >>>>>>>>>>>>>>> waiting for
Why doesn’t the simulated HHH abort?Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott: >>>>>>>>>>>>>>>>>>> On 9/5/2024 10:57 AM, joes wrote:The directly executed HHH correctly determines that its >>>>>>>>>>>>>>>>> emulated DDD
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott: >>>>>>>>>>>>>>>>>>>>> On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said: >>>>>>>>>>>>>>>>>>>>>>> On 9/3/2024 5:25 AM, Mikko wrote: >>>>>>>>>>>>>>>>>>>>>>>> On 2024-09-02 16:38:03 +0000, olcott said: >>>>>>>>>>>>
must be aborted because DDD keeps *THE EMULATED HHH* >>>>>>>>>>>>>>>>> stuck in
recursive emulation.
its HHH to abort on and on with no HHH ever aborting. >>>>>>>>>>>>>> But why does HHH halt and return that itself doesn’t halt? >>>>>>>>>>>>> When HHH is waiting for the next HHH which is waiting for >>>>>>>>>>>>> the next HHH
we have an infinite chain of waiting and never aborting. >>>>>>>>>>>> Except for the outermost one.
When the outermost HHH is waiting for its emulated HHH
to abort and this emulated HHH is waiting on its emulated >>>>>>>>>>> HHH to abort on and on forever waiting and none ever abort. >>>>>>>>>>>
Which only happens if HHH is defined in a way that it never >>>>>>>>>> aborts this simulaiton, and that HHH isn't a correct decider. >>>>>>>>>>
That is NOT what Joes has been proposing.
Joes has been proposing that each HHH in the recursive chain >>>>>>>>> can wait until the next one aborts and that the abort will
still occur at the end of this infinite chain.
No, he is pointing out that get the right answer, each HHH NEEDS >>>>>>>> to wait for the previous one to get the right answer.
But, if to do so, it results in the definition of HHH that just >>>>>>>> never aborts and thus HHH isn't a decider.
Not He, and stupidly waiting forever is stupid.
So, what do you think HHH can do to get the right answer,
No dishonestly changing the subject.
The subject is that Joes is wrong that HHH can wait
on another HHH to abort.
But it isn't a changing of the subject!
Can the outermost directly executed HHH wait for an
inner one to abort and still terminate normally.
(a) YES
(b) NO
No,
Joes cannot understand that.
On 9/7/2024 12:49 PM, Richard Damon wrote:
On 9/7/24 1:24 PM, olcott wrote:
On 9/7/2024 11:53 AM, Richard Damon wrote:
On 9/7/24 12:47 PM, olcott wrote:
On 9/7/2024 11:30 AM, Richard Damon wrote:
On 9/7/24 12:23 PM, olcott wrote:
On 9/7/2024 11:20 AM, Richard Damon wrote:
On 9/7/24 11:47 AM, olcott wrote:
On 9/7/2024 10:32 AM, Richard Damon wrote:
On 9/7/24 11:14 AM, olcott wrote:
On 9/7/2024 10:10 AM, Richard Damon wrote:
On 9/7/24 10:54 AM, olcott wrote:
On 9/7/2024 9:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:38:22 -0500 schrieb olcott: >>>>>>>>>>>>>>> On 9/5/2024 12:22 PM, joes wrote:
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott: >>>>>>>>>>>>>>>>> On 9/5/2024 11:56 AM, joes wrote:which is waiting for the next HHH...
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott: >>>>>>>>>>>>>>>>>>> On 9/5/2024 11:34 AM, joes wrote:The first HHH cannot wait for its HHH to abort which is >>>>>>>>>>>>>>>>> waiting for
Why doesn’t the simulated HHH abort?Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott: >>>>>>>>>>>>>>>>>>>>> On 9/5/2024 10:57 AM, joes wrote:The directly executed HHH correctly determines that >>>>>>>>>>>>>>>>>>> its emulated DDD
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott: >>>>>>>>>>>>>>>>>>>>>>> On 9/5/2024 2:34 AM, Mikko wrote: >>>>>>>>>>>>>>>>>>>>>>>> On 2024-09-03 13:00:50 +0000, olcott said: >>>>>>>>>>>>>>>>>>>>>>>>> On 9/3/2024 5:25 AM, Mikko wrote: >>>>>>>>>>>>>>>>>>>>>>>>>> On 2024-09-02 16:38:03 +0000, olcott said: >>>>>>>>>>>>>>
must be aborted because DDD keeps *THE EMULATED HHH* >>>>>>>>>>>>>>>>>>> stuck in
recursive emulation.
its HHH to abort on and on with no HHH ever aborting. >>>>>>>>>>>>>>>> But why does HHH halt and return that itself doesn’t halt? >>>>>>>>>>>>>>> When HHH is waiting for the next HHH which is waiting for >>>>>>>>>>>>>>> the next HHH
we have an infinite chain of waiting and never aborting. >>>>>>>>>>>>>> Except for the outermost one.
When the outermost HHH is waiting for its emulated HHH >>>>>>>>>>>>> to abort and this emulated HHH is waiting on its emulated >>>>>>>>>>>>> HHH to abort on and on forever waiting and none ever abort. >>>>>>>>>>>>>
Which only happens if HHH is defined in a way that it never >>>>>>>>>>>> aborts this simulaiton, and that HHH isn't a correct decider. >>>>>>>>>>>>
That is NOT what Joes has been proposing.
Joes has been proposing that each HHH in the recursive chain >>>>>>>>>>> can wait until the next one aborts and that the abort will >>>>>>>>>>> still occur at the end of this infinite chain.
No, he is pointing out that get the right answer, each HHH >>>>>>>>>> NEEDS to wait for the previous one to get the right answer. >>>>>>>>>>
But, if to do so, it results in the definition of HHH that >>>>>>>>>> just never aborts and thus HHH isn't a decider.
Not He, and stupidly waiting forever is stupid.
So, what do you think HHH can do to get the right answer,
No dishonestly changing the subject.
The subject is that Joes is wrong that HHH can wait
on another HHH to abort.
But it isn't a changing of the subject!
Can the outermost directly executed HHH wait for an
inner one to abort and still terminate normally.
(a) YES
(b) NO
No,
Joes cannot understand that.
No *YOU* don't understand that he isn't worrying about if HHH can
terminate normally,
*Joes is not plural or possessive, she is not a he*
*Joes is not plural or possessive, she is not a he*
*Joes is not plural or possessive, she is not a he*
*Joes is not plural or possessive, she is not a he*
*Joes is not plural or possessive, she is not a he*
My proof must be understood as a sequence of steps.
The first one is that neither HHH nor DDD ever stops
running unless HHH aborts its emulation.
Joes could never understand that. She simply chose
to believe otherwise against the verified facts.
On 9/7/2024 11:53 AM, Richard Damon wrote:
On 9/7/24 12:47 PM, olcott wrote:
On 9/7/2024 11:30 AM, Richard Damon wrote:
On 9/7/24 12:23 PM, olcott wrote:
On 9/7/2024 11:20 AM, Richard Damon wrote:
On 9/7/24 11:47 AM, olcott wrote:
On 9/7/2024 10:32 AM, Richard Damon wrote:
On 9/7/24 11:14 AM, olcott wrote:
On 9/7/2024 10:10 AM, Richard Damon wrote:
On 9/7/24 10:54 AM, olcott wrote:
On 9/7/2024 9:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:38:22 -0500 schrieb olcott:
On 9/5/2024 12:22 PM, joes wrote:
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott: >>>>>>>>>>>>>>> On 9/5/2024 11:56 AM, joes wrote:which is waiting for the next HHH...
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott: >>>>>>>>>>>>>>>>> On 9/5/2024 11:34 AM, joes wrote:The first HHH cannot wait for its HHH to abort which is >>>>>>>>>>>>>>> waiting for
Why doesn’t the simulated HHH abort?Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott: >>>>>>>>>>>>>>>>>>> On 9/5/2024 10:57 AM, joes wrote:The directly executed HHH correctly determines that its >>>>>>>>>>>>>>>>> emulated DDD
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott: >>>>>>>>>>>>>>>>>>>>> On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said: >>>>>>>>>>>>>>>>>>>>>>> On 9/3/2024 5:25 AM, Mikko wrote: >>>>>>>>>>>>>>>>>>>>>>>> On 2024-09-02 16:38:03 +0000, olcott said: >>>>>>>>>>>>
must be aborted because DDD keeps *THE EMULATED HHH* >>>>>>>>>>>>>>>>> stuck in
recursive emulation.
its HHH to abort on and on with no HHH ever aborting. >>>>>>>>>>>>>> But why does HHH halt and return that itself doesn’t halt? >>>>>>>>>>>>> When HHH is waiting for the next HHH which is waiting for >>>>>>>>>>>>> the next HHH
we have an infinite chain of waiting and never aborting. >>>>>>>>>>>> Except for the outermost one.
When the outermost HHH is waiting for its emulated HHH
to abort and this emulated HHH is waiting on its emulated >>>>>>>>>>> HHH to abort on and on forever waiting and none ever abort. >>>>>>>>>>>
Which only happens if HHH is defined in a way that it never >>>>>>>>>> aborts this simulaiton, and that HHH isn't a correct decider. >>>>>>>>>>
That is NOT what Joes has been proposing.
Joes has been proposing that each HHH in the recursive chain >>>>>>>>> can wait until the next one aborts and that the abort will
still occur at the end of this infinite chain.
No, he is pointing out that get the right answer, each HHH NEEDS >>>>>>>> to wait for the previous one to get the right answer.
But, if to do so, it results in the definition of HHH that just >>>>>>>> never aborts and thus HHH isn't a decider.
Not He, and stupidly waiting forever is stupid.
So, what do you think HHH can do to get the right answer,
No dishonestly changing the subject.
The subject is that Joes is wrong that HHH can wait
on another HHH to abort.
But it isn't a changing of the subject!
Can the outermost directly executed HHH wait for an
inner one to abort and still terminate normally.
(a) YES
(b) NO
No,
*Therefore this criteria is met*
<MIT Professor Sipser agreed to ONLY these verbatim words 10/13/2022>
If simulating halt decider H correctly simulates its input D
until H correctly determines that its simulated D would never
stop running unless aborted then
On 9/7/2024 3:48 PM, Richard Damon wrote:
On 9/7/24 3:27 PM, olcott wrote:
On 9/7/2024 11:53 AM, Richard Damon wrote:
On 9/7/24 12:47 PM, olcott wrote:
On 9/7/2024 11:30 AM, Richard Damon wrote:
On 9/7/24 12:23 PM, olcott wrote:
On 9/7/2024 11:20 AM, Richard Damon wrote:
On 9/7/24 11:47 AM, olcott wrote:
On 9/7/2024 10:32 AM, Richard Damon wrote:
On 9/7/24 11:14 AM, olcott wrote:
On 9/7/2024 10:10 AM, Richard Damon wrote:
On 9/7/24 10:54 AM, olcott wrote:
On 9/7/2024 9:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:38:22 -0500 schrieb olcott: >>>>>>>>>>>>>>> On 9/5/2024 12:22 PM, joes wrote:
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott: >>>>>>>>>>>>>>>>> On 9/5/2024 11:56 AM, joes wrote:which is waiting for the next HHH...
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott: >>>>>>>>>>>>>>>>>>> On 9/5/2024 11:34 AM, joes wrote:The first HHH cannot wait for its HHH to abort which is >>>>>>>>>>>>>>>>> waiting for
Why doesn’t the simulated HHH abort?Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott: >>>>>>>>>>>>>>>>>>>>> On 9/5/2024 10:57 AM, joes wrote:The directly executed HHH correctly determines that >>>>>>>>>>>>>>>>>>> its emulated DDD
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott: >>>>>>>>>>>>>>>>>>>>>>> On 9/5/2024 2:34 AM, Mikko wrote: >>>>>>>>>>>>>>>>>>>>>>>> On 2024-09-03 13:00:50 +0000, olcott said: >>>>>>>>>>>>>>>>>>>>>>>>> On 9/3/2024 5:25 AM, Mikko wrote: >>>>>>>>>>>>>>>>>>>>>>>>>> On 2024-09-02 16:38:03 +0000, olcott said: >>>>>>>>>>>>>>
must be aborted because DDD keeps *THE EMULATED HHH* >>>>>>>>>>>>>>>>>>> stuck in
recursive emulation.
its HHH to abort on and on with no HHH ever aborting. >>>>>>>>>>>>>>>> But why does HHH halt and return that itself doesn’t halt? >>>>>>>>>>>>>>> When HHH is waiting for the next HHH which is waiting for >>>>>>>>>>>>>>> the next HHH
we have an infinite chain of waiting and never aborting. >>>>>>>>>>>>>> Except for the outermost one.
When the outermost HHH is waiting for its emulated HHH >>>>>>>>>>>>> to abort and this emulated HHH is waiting on its emulated >>>>>>>>>>>>> HHH to abort on and on forever waiting and none ever abort. >>>>>>>>>>>>>
Which only happens if HHH is defined in a way that it never >>>>>>>>>>>> aborts this simulaiton, and that HHH isn't a correct decider. >>>>>>>>>>>>
That is NOT what Joes has been proposing.
Joes has been proposing that each HHH in the recursive chain >>>>>>>>>>> can wait until the next one aborts and that the abort will >>>>>>>>>>> still occur at the end of this infinite chain.
No, he is pointing out that get the right answer, each HHH >>>>>>>>>> NEEDS to wait for the previous one to get the right answer. >>>>>>>>>>
But, if to do so, it results in the definition of HHH that >>>>>>>>>> just never aborts and thus HHH isn't a decider.
Not He, and stupidly waiting forever is stupid.
So, what do you think HHH can do to get the right answer,
No dishonestly changing the subject.
The subject is that Joes is wrong that HHH can wait
on another HHH to abort.
But it isn't a changing of the subject!
Can the outermost directly executed HHH wait for an
inner one to abort and still terminate normally.
(a) YES
(b) NO
No,
*Therefore this criteria is met*
<MIT Professor Sipser agreed to ONLY these verbatim words 10/13/2022>
If simulating halt decider H correctly simulates its input D
until H correctly determines that its simulated D would never
stop running unless aborted then
Nope, and just proves that you don't understand what you are talking
about.
Your question was, when HHH is the variable, and the input DDD is
defined to be a function of that variable, does HHH need to be an
aborting emulator to reach the final state. And there the answer is
HHH must be an aborting emulator.
You can see from my quote above that I didn't say anything like that.
On 9/7/2024 9:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:38:22 -0500 schrieb olcott:
On 9/5/2024 12:22 PM, joes wrote:Except for the outermost one.
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott:
On 9/5/2024 11:56 AM, joes wrote:
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott:
On 9/5/2024 11:34 AM, joes wrote:
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott:
On 9/5/2024 10:57 AM, joes wrote:
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
When HHH is waiting for the next HHH which is waiting for the next HHHBut why does HHH halt and return that itself doesn’t halt?The first HHH cannot wait for its HHH to abort which is waiting forThe directly executed HHH correctly determines that its emulated DDD >>>>>>> must be aborted because DDD keeps *THE EMULATED HHH* stuck inWhy doesn’t the simulated HHH abort?
recursive emulation.
its HHH to abort on and on with no HHH ever aborting.
which is waiting for the next HHH...
we have an infinite chain of waiting and never aborting.
When the outermost HHH is waiting for its emulated HHH
to abort and this emulated HHH is waiting on its emulated
HHH to abort on and on forever waiting and none ever abort.
On 9/7/2024 3:27 AM, Mikko wrote:Like Sipser said.
On 2024-09-06 11:42:48 +0000, olcott said:
On 9/6/2024 6:19 AM, Mikko wrote:
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
A halt decider is a Turing machine that computes the mapping >>>>>>>>> from its finite string input to the behavior that this finite >>>>>>>>> string specifies.A halt decider needn't compute the full behaviour, only whether >>>>>>>> that behaviour is finite or infinite.
Your implementation is buggy.I SHOW THE ACTUAL EXECUTION TRACE AND EVERYONE DISAGREES WITH IT.The directly executed HHH is a decider.If that iis true it means that HHH called by DDD does not return andNew slave_stack at:1038c4 Begin Local Halt Decider Simulation >>>>>>> Local Halt Decider: Infinite Recursion Detected Simulation Stopped >>>>>>> Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates, so DDD obviously terminates, too.
DDD emulated by HHH never reaches it final halt state.
therefore is not a ceicder.
If the called HHH behaves differently from the direcly executed HHH
then the DDD is not relevant to classic proofs of the impossibility of
a halting decider.
If you can't show encoding rules that permit the encoidng of the
behaviour of the directly executed DDD to HHH then HHH is not a halting
decider.
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation
A halt decider is a Turing machine that computes the mapping from >>>>>>>>>> its finite string input to the behavior that this finite string >>>>>>>>>> specifies.
A halt decider needn't compute the full behaviour, only whether >>>>>>>>> that behaviour is finite or infinite.
The directly executed HHH is a decider.Local Halt Decider: Infinite Recursion Detected Simulation Stopped >>>>>>>>
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return and >>>>> therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
On 9/7/2024 3:27 AM, Mikko wrote:
On 2024-09-06 11:42:48 +0000, olcott said:
On 9/6/2024 6:19 AM, Mikko wrote:
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
A halt decider needn't compute the full behaviour, only whether >>>>>>>> that behaviour is finite or infinite.
void DDD()
{
HHH(DDD);
return;
}
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 >>>>>>>
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return
and therefore is not a ceicder.
The directly executed HHH is a decider.
If the called HHH behaves differently from the direcly executed HHH
then the DDD is not relevant to classic proofs of the impossibility
of a halting decider.
If you can't show encoding rules that permit the encoidng of the
behaviour of the directly executed DDD to HHH then HHH is not a
halting decider.
I SHOW THE ACTUAL EXECUTION TRACE AND EVERYONE DISAGREES WITH IT.
On 9/8/2024 7:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:56:02 -0500 schrieb olcott:
On 9/7/2024 3:27 AM, Mikko wrote:Like Sipser said.
On 2024-09-06 11:42:48 +0000, olcott said:
On 9/6/2024 6:19 AM, Mikko wrote:
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
A halt decider is a Turing machine that computes the mapping >>>>>>>>>>> from its finite string input to the behavior that this finite >>>>>>>>>>> string specifies.A halt decider needn't compute the full behaviour, only whether >>>>>>>>>> that behaviour is finite or infinite.
Your implementation is buggy.I SHOW THE ACTUAL EXECUTION TRACE AND EVERYONE DISAGREES WITH IT.The directly executed HHH is a decider.If that iis true it means that HHH called by DDD does not return and >>>>>> therefore is not a ceicder.New slave_stack at:1038c4 Begin Local Halt Decider Simulation >>>>>>>>> Local Halt Decider: Infinite Recursion Detected Simulation Stopped >>>>>>>>> Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates, so DDD obviously terminates, too.
DDD emulated by HHH never reaches it final halt state.
If the called HHH behaves differently from the direcly executed HHH
then the DDD is not relevant to classic proofs of the impossibility of >>>> a halting decider.
If you can't show encoding rules that permit the encoidng of the
behaviour of the directly executed DDD to HHH then HHH is not a halting >>>> decider.
X86utm is based on a world class x86 emulator that
has had decades of development effort. It has been
trivial to verify to the execution traces that it
produces are correct for three years.
It really seems quite ridiculous to me that everyone
could continue to disagree with such easily verified
facts without malevolent motives.
void DDD()
{
HHH(DDD);
return;
}
Is the dumbed down version of the haling problem pathological input:
int DD(int (*x)())
{
int Halt_Status = HH(x, x);
if (Halt_Status)
HERE: goto HERE;
return Halt_Status;
}
I dumbed it down as much as possible and people still don't get
it. They seem to believe that they are free to disagree with the
x86 language.
It is like they believe that Trump actually won twice as many
votes as there are voters and cannot be convinced otherwise.
On 9/8/2024 5:05 AM, Fred. Zwarts wrote:
Op 07.sep.2024 om 16:54 schreef olcott:
On 9/7/2024 9:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:38:22 -0500 schrieb olcott:
On 9/5/2024 12:22 PM, joes wrote:Except for the outermost one.
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott:
On 9/5/2024 11:56 AM, joes wrote:
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott:
On 9/5/2024 11:34 AM, joes wrote:
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott:
On 9/5/2024 10:57 AM, joes wrote:
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
When HHH is waiting for the next HHH which is waiting for the next HHH >>>>> which is waiting for the next HHH...But why does HHH halt and return that itself doesn’t halt?The first HHH cannot wait for its HHH to abort which is waiting for >>>>>>> its HHH to abort on and on with no HHH ever aborting.The directly executed HHH correctly determines that itsWhy doesn’t the simulated HHH abort?
emulated DDD
must be aborted because DDD keeps *THE EMULATED HHH* stuck in >>>>>>>>> recursive emulation.
we have an infinite chain of waiting and never aborting.
When the outermost HHH is waiting for its emulated HHH
to abort and this emulated HHH is waiting on its emulated
HHH to abort on and on forever waiting and none ever abort.
Dreaming again of a HHH that does not abort.
In other words you have no idea what a hypothesis is?
The outermost HHH can either abort it emulation of DDD
or not and either way DDD cannot possibly reach its final
halt state of its "return" instruction and halt.
HHH does abort, therefore it does not wait long enough, but there is no
You seem to be intentionally too stupid to understand that
HHH cannot possibly wait. If it was not intentional stupidity
I would not use such harsh terms.
If HHH waits then every HHH waits and none of them ever abort
because each HHH has the exact same code at the exact same machine
address. It not your fault if you have a lower IQ. It is your fault
for not paying any attention to my corrections of your false
assumptions.
way to correct it. Waiting longer is not a solution. There is no
solution. HHH cannot possibly simulate itself correctly up to the end.
How many times and in how many different way must this be repeated
before olcott understands this?
On 9/8/2024 5:05 AM, Fred. Zwarts wrote:
Op 07.sep.2024 om 16:54 schreef olcott:
On 9/7/2024 9:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:38:22 -0500 schrieb olcott:
On 9/5/2024 12:22 PM, joes wrote:Except for the outermost one.
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott:
On 9/5/2024 11:56 AM, joes wrote:
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott:
On 9/5/2024 11:34 AM, joes wrote:
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott:
On 9/5/2024 10:57 AM, joes wrote:
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
When HHH is waiting for the next HHH which is waiting for the next HHH >>>>> which is waiting for the next HHH...But why does HHH halt and return that itself doesn’t halt?The first HHH cannot wait for its HHH to abort which is waiting for >>>>>>> its HHH to abort on and on with no HHH ever aborting.The directly executed HHH correctly determines that itsWhy doesn’t the simulated HHH abort?
emulated DDD
must be aborted because DDD keeps *THE EMULATED HHH* stuck in >>>>>>>>> recursive emulation.
we have an infinite chain of waiting and never aborting.
When the outermost HHH is waiting for its emulated HHH
to abort and this emulated HHH is waiting on its emulated
HHH to abort on and on forever waiting and none ever abort.
Dreaming again of a HHH that does not abort.
In other words you have no idea what a hypothesis is?
The outermost HHH can either abort it emulation of DDD
or not and either way DDD cannot possibly reach its final
halt state of its "return" instruction and halt.
HHH does abort, therefore it does not wait long enough, but there is no
You seem to be intentionally too stupid to understand that
HHH cannot possibly wait. If it was not intentional stupidity
I would not use such harsh terms.
If HHH waits then every HHH waits and none of them ever abort
because each HHH has the exact same code at the exact same machine
address.
It not your fault if you have a lower IQ. It is your fault> for notpaying any attention to my corrections of your false
assumptions.
way to correct it. Waiting longer is not a solution. There is no
solution. HHH cannot possibly simulate itself correctly up to the end.
How many times and in how many different way must this be repeated
before olcott understands this?
On 9/8/2024 7:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:56:02 -0500 schrieb olcott:
On 9/7/2024 3:27 AM, Mikko wrote:Like Sipser said.
On 2024-09-06 11:42:48 +0000, olcott said:
On 9/6/2024 6:19 AM, Mikko wrote:
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
A halt decider is a Turing machine that computes the mapping >>>>>>>>>>> from its finite string input to the behavior that this finite >>>>>>>>>>> string specifies.A halt decider needn't compute the full behaviour, only whether >>>>>>>>>> that behaviour is finite or infinite.
Your implementation is buggy.I SHOW THE ACTUAL EXECUTION TRACE AND EVERYONE DISAGREES WITH IT.The directly executed HHH is a decider.If that iis true it means that HHH called by DDD does not return and >>>>>> therefore is not a ceicder.New slave_stack at:1038c4 Begin Local Halt Decider Simulation >>>>>>>>> Local Halt Decider: Infinite Recursion Detected Simulation Stopped >>>>>>>>> Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates, so DDD obviously terminates, too.
DDD emulated by HHH never reaches it final halt state.
If the called HHH behaves differently from the direcly executed HHH
then the DDD is not relevant to classic proofs of the impossibility of >>>> a halting decider.
If you can't show encoding rules that permit the encoidng of the
behaviour of the directly executed DDD to HHH then HHH is not a halting >>>> decider.
X86utm is based on a world class x86 emulator that
has had decades of development effort. It has been
trivial to verify to the execution traces that it
produces are correct for three years.
It really seems quite ridiculous to me that everyone
could continue to disagree with such easily verified
facts without malevolent motives.
void DDD()
{
HHH(DDD);
return;
}
Is the dumbed down version of the haling problem pathological input:
int DD(int (*x)())
{
int Halt_Status = HH(x, x);
if (Halt_Status)
HERE: goto HERE;
return Halt_Status;
}
I dumbed it down as much as possible and people still don't get
it. They seem to believe that they are free to disagree with the
x86 language.
On 9/8/2024 7:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:57:00 -0500 schrieb olcott:
On 9/7/2024 3:29 AM, Mikko wrote:How? What is pathological?
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:The directly executed HHH is a decider.
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation >>>>>>>>>> Local Halt Decider: Infinite Recursion Detected Simulation >>>>>>>>>> Stopped
A halt decider is a Turing machine that computes the mapping >>>>>>>>>>>> from its finite string input to the behavior that this finite >>>>>>>>>>>> string specifies.
A halt decider needn't compute the full behaviour, only whether >>>>>>>>>>> that behaviour is finite or infinite.
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return and >>>>>>> therefore is not a ceicder.
If the simulation is incorrect it may change anything.
void DDD()
{
HHH(DDD);
return;
}
That DDD calls its own emulator (a pathological relationship)
makes this DDD and HHH stuck in infinite recursive emulation
unless the outermost HHH aborts its emulation at some point.
Whether HHH aborts its emulation at some point or not DDD
never reaches its final halt state of "return",
thus DDD cannot possibly halt no matter what HHH does.
On 9/8/2024 9:53 AM, Mikko wrote:I don’t see an HCF instruction above.
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
A correct emulation obeys the x86 machine code even if this machine code catches the machine on fire.However, a correct simultation faithfully imitates the originalPATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIORIf the simulation is incorrect it may change anything.What does simulating it change about that?The directly executed HHH is a decider.A halt decider needn't compute the full behaviour, onlyLocal Halt Decider: Infinite Recursion Detected Simulation >>>>>>>>>> Stopped
whether that behaviour is finite or infinite.
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates, so DDD obviously terminates, too.
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return >>>>>>> and therefore is not a ceicder.
behaviour.
It is impossible for an emulation of DDD by HHH to reach machine address 00002183 AND YOU KNOW IT!!!I know that HHH1 does it.
On 9/9/2024 5:57 AM, Fred. Zwarts wrote:
Op 08.sep.2024 om 15:10 schreef olcott:
On 9/8/2024 7:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:56:02 -0500 schrieb olcott:
On 9/7/2024 3:27 AM, Mikko wrote:Like Sipser said.
On 2024-09-06 11:42:48 +0000, olcott said:
On 9/6/2024 6:19 AM, Mikko wrote:
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
A halt decider is a Turing machine that computes the mapping >>>>>>>>>>>>> from its finite string input to the behavior that this finite >>>>>>>>>>>>> string specifies.A halt decider needn't compute the full behaviour, only whether >>>>>>>>>>>> that behaviour is finite or infinite.
Your implementation is buggy.I SHOW THE ACTUAL EXECUTION TRACE AND EVERYONE DISAGREES WITH IT.The directly executed HHH is a decider.If that iis true it means that HHH called by DDD does not return >>>>>>>> andNew slave_stack at:1038c4 Begin Local Halt Decider Simulation >>>>>>>>>>> Local Halt Decider: Infinite Recursion Detected Simulation >>>>>>>>>>> Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates, so DDD obviously terminates, too.
DDD emulated by HHH never reaches it final halt state.
therefore is not a ceicder.
If the called HHH behaves differently from the direcly executed HHH >>>>>> then the DDD is not relevant to classic proofs of the
impossibility of
a halting decider.
If you can't show encoding rules that permit the encoidng of the
behaviour of the directly executed DDD to HHH then HHH is not a
halting
decider.
X86utm is based on a world class x86 emulator that
has had decades of development effort. It has been
trivial to verify to the execution traces that it
produces are correct for three years.
And the simulation by this unmodified X86utm showed that the DDD based
on the HHH that aborts, halts.
The freaking question has never been when DDD is aborted does
it stop running? I told you the question too many times and
you always dishonestly change it.
On 9/9/2024 6:11 AM, Fred. Zwarts wrote:
Op 08.sep.2024 om 16:16 schreef olcott:
On 9/8/2024 5:05 AM, Fred. Zwarts wrote:
Op 07.sep.2024 om 16:54 schreef olcott:
On 9/7/2024 9:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:38:22 -0500 schrieb olcott:
On 9/5/2024 12:22 PM, joes wrote:Except for the outermost one.
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott:
On 9/5/2024 11:56 AM, joes wrote:
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott:
On 9/5/2024 11:34 AM, joes wrote:
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott:
On 9/5/2024 10:57 AM, joes wrote:
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott: >>>>>>>>>>>>>>> On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
When HHH is waiting for the next HHH which is waiting for theBut why does HHH halt and return that itself doesn’t halt?The first HHH cannot wait for its HHH to abort which is waiting >>>>>>>>> forThe directly executed HHH correctly determines that itsWhy doesn’t the simulated HHH abort?
emulated DDD
must be aborted because DDD keeps *THE EMULATED HHH* stuck in >>>>>>>>>>> recursive emulation.
its HHH to abort on and on with no HHH ever aborting.
next HHH
which is waiting for the next HHH...
we have an infinite chain of waiting and never aborting.
When the outermost HHH is waiting for its emulated HHH
to abort and this emulated HHH is waiting on its emulated
HHH to abort on and on forever waiting and none ever abort.
Dreaming again of a HHH that does not abort.
In other words you have no idea what a hypothesis is?
I do, but olcott thinks a dream is sufficient to prove a hypothesis.
The outermost HHH can either abort it emulation of DDD
or not and either way DDD cannot possibly reach its final
halt state of its "return" instruction and halt.
Exactly, so either way the simulation fails to reach the end.
HHH cannot possibly simulate itself correctly up to the end.
Thus must be aborted and is necessarily correct to report non-halting.
On 9/8/2024 9:56 AM, Mikko wrote:
On 2024-09-07 13:56:02 +0000, olcott said:
On 9/7/2024 3:27 AM, Mikko wrote:
On 2024-09-06 11:42:48 +0000, olcott said:
On 9/6/2024 6:19 AM, Mikko wrote:
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
A halt decider is a Turing machine that computes
the mapping from its finite string input to the
behavior that this finite string specifies.
A halt decider needn't compute the full behaviour, only whether >>>>>>>>>> that behaviour is finite or infinite.
void DDD()
{
HHH(DDD);
return;
}
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 >>>>>>>>>
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return
and therefore is not a ceicder.
The directly executed HHH is a decider.
If the called HHH behaves differently from the direcly executed HHH
then the DDD is not relevant to classic proofs of the impossibility
of a halting decider.
If you can't show encoding rules that permit the encoidng of the
behaviour of the directly executed DDD to HHH then HHH is not a
halting decider.
I SHOW THE ACTUAL EXECUTION TRACE AND EVERYONE DISAGREES WITH IT.
There are no encoding rules in the actual execution trace.
The x86 execution trace is encoded in the x86 language.
Why do you insist on lying about this?
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation
A halt decider is a Turing machine that computes the mapping from >>>>>>>>>>>> its finite string input to the behavior that this finite string >>>>>>>>>>>> specifies.
A halt decider needn't compute the full behaviour, only whether >>>>>>>>>>> that behaviour is finite or infinite.
The directly executed HHH is a decider.Local Halt Decider: Infinite Recursion Detected Simulation Stopped >>>>>>>>>>
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return and >>>>>>> therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original
behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
On 9/9/2024 6:11 AM, Fred. Zwarts wrote:
Op 08.sep.2024 om 16:16 schreef olcott:
On 9/8/2024 5:05 AM, Fred. Zwarts wrote:
Op 07.sep.2024 om 16:54 schreef olcott:
On 9/7/2024 9:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:38:22 -0500 schrieb olcott:
On 9/5/2024 12:22 PM, joes wrote:Except for the outermost one.
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott:
On 9/5/2024 11:56 AM, joes wrote:
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott:
On 9/5/2024 11:34 AM, joes wrote:
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott:
On 9/5/2024 10:57 AM, joes wrote:
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott: >>>>>>>>>>>>>>> On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
When HHH is waiting for the next HHH which is waiting for theBut why does HHH halt and return that itself doesn’t halt?The first HHH cannot wait for its HHH to abort which is waiting >>>>>>>>> forThe directly executed HHH correctly determines that itsWhy doesn’t the simulated HHH abort?
emulated DDD
must be aborted because DDD keeps *THE EMULATED HHH* stuck in >>>>>>>>>>> recursive emulation.
its HHH to abort on and on with no HHH ever aborting.
next HHH
which is waiting for the next HHH...
we have an infinite chain of waiting and never aborting.
When the outermost HHH is waiting for its emulated HHH
to abort and this emulated HHH is waiting on its emulated
HHH to abort on and on forever waiting and none ever abort.
Dreaming again of a HHH that does not abort.
In other words you have no idea what a hypothesis is?
I do, but olcott thinks a dream is sufficient to prove a hypothesis.
The outermost HHH can either abort it emulation of DDD
or not and either way DDD cannot possibly reach its final
halt state of its "return" instruction and halt.
Exactly, so either way the simulation fails to reach the end.
HHH cannot possibly simulate itself correctly up to the end.
Thus must be aborted and is necessarily correct to report non-halting.
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation
A halt decider is a Turing machine that computes the mapping >>>>>>>>>>>> from
its finite string input to the behavior that this finite string >>>>>>>>>>>> specifies.
A halt decider needn't compute the full behaviour, only whether >>>>>>>>>>> that behaviour is finite or infinite.
The directly executed HHH is a decider.Local Halt Decider: Infinite Recursion Detected Simulation >>>>>>>>>> Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return and >>>>>>> therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original
behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
On 9/9/2024 5:57 AM, Fred. Zwarts wrote:This shows that olcott's language processing is too bad to even
Op 08.sep.2024 om 15:10 schreef olcott:
On 9/8/2024 7:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:56:02 -0500 schrieb olcott:
On 9/7/2024 3:27 AM, Mikko wrote:Like Sipser said.
On 2024-09-06 11:42:48 +0000, olcott said:
On 9/6/2024 6:19 AM, Mikko wrote:
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
A halt decider is a Turing machine that computes the mapping >>>>>>>>>>>>> from its finite string input to the behavior that this finite >>>>>>>>>>>>> string specifies.A halt decider needn't compute the full behaviour, only whether >>>>>>>>>>>> that behaviour is finite or infinite.
Your implementation is buggy.I SHOW THE ACTUAL EXECUTION TRACE AND EVERYONE DISAGREES WITH IT.The directly executed HHH is a decider.If that iis true it means that HHH called by DDD does not return >>>>>>>> andNew slave_stack at:1038c4 Begin Local Halt Decider Simulation >>>>>>>>>>> Local Halt Decider: Infinite Recursion Detected Simulation >>>>>>>>>>> Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates, so DDD obviously terminates, too.
DDD emulated by HHH never reaches it final halt state.
therefore is not a ceicder.
If the called HHH behaves differently from the direcly executed HHH >>>>>> then the DDD is not relevant to classic proofs of the
impossibility of
a halting decider.
If you can't show encoding rules that permit the encoidng of the
behaviour of the directly executed DDD to HHH then HHH is not a
halting
decider.
X86utm is based on a world class x86 emulator that
has had decades of development effort. It has been
trivial to verify to the execution traces that it
produces are correct for three years.
And the simulation by this unmodified X86utm showed that the DDD based
on the HHH that aborts, halts.
The freaking question has never been when DDD is aborted does
it stop running?
On 9/9/2024 3:02 PM, joes wrote:
Am Mon, 09 Sep 2024 13:19:26 -0500 schrieb olcott:
On 9/8/2024 9:53 AM, Mikko wrote:I don’t see an HCF instruction above.
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
A correct emulation obeys the x86 machine code even if this machine code >>> catches the machine on fire.However, a correct simultation faithfully imitates the originalPATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIORIf the simulation is incorrect it may change anything.What does simulating it change about that?The directly executed HHH is a decider.A halt decider needn't compute the full behaviour, only >>>>>>>>>>>>> whether that behaviour is finite or infinite.Local Halt Decider: Infinite Recursion Detected Simulation >>>>>>>>>>>> Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates, so DDD obviously terminates, too.
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return >>>>>>>>> and therefore is not a ceicder.
behaviour.
It is impossible for an emulation of DDD by HHH to reach machine address >>> 00002183 AND YOU KNOW IT!!!I know that HHH1 does it.
Right a Bill is guilty of robbing the liquor store because you
saw his identical twin brother Harry rob the store and you knew
that it was Harry that you saw rob the store and not Bill.
On 9/10/2024 3:52 AM, Mikko wrote:
On 2024-09-09 18:19:26 +0000, olcott said:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:The directly executed HHH is a decider.
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation >>>>>>>
A halt decider is a Turing machine that computes the >>>>>>>>>>>>>> mapping from
its finite string input to the behavior that this finite >>>>>>>>>>>>>> string
specifies.
A halt decider needn't compute the full behaviour, only >>>>>>>>>>>>> whether
that behaviour is finite or infinite.
Local Halt Decider: Infinite Recursion Detected Simulation >>>>>>>>>>>> Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not
return and
therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original
behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
A correct emulation of DDD does reach the machine address 0000217f and
a little later 00002183.
*That is counter-factual and you cannot possibly show otherwise*
*Here are the verified facts*
*any attempt to show otherwise cannot possibly succeed*
DDD emulated by the directly executed HHH derived these steps:
00002172, 00002173, 00002175, 0000217a
thus HHH emulated by the directly executed HHH cannot possibly
derive and other steps and I have proved that it does not
derive any other steps by the actual execution trace by a world
class x86 emulator libx86emu.
On 9/10/2024 3:52 AM, Mikko wrote:
On 2024-09-09 18:19:26 +0000, olcott said:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:The directly executed HHH is a decider.
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation >>>>>>>
A halt decider is a Turing machine that computes the >>>>>>>>>>>>>> mapping from
its finite string input to the behavior that this finite >>>>>>>>>>>>>> string
specifies.
A halt decider needn't compute the full behaviour, only whether >>>>>>>>>>>>> that behaviour is finite or infinite.
Local Halt Decider: Infinite Recursion Detected Simulation >>>>>>>>>>>> Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return >>>>>>>>> and
therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original
behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
A correct emulation of DDD does reach the machine address 0000217f and
a little later 00002183.
*That is counter-factual and you cannot possibly show otherwise*
*Here are the verified facts*
*any attempt to show otherwise cannot possibly succeed*
DDD emulated by the directly executed HHH derived these steps:
00002172, 00002173, 00002175, 0000217a
thus HHH emulated by the directly executed HHH cannot possibly
derive and other steps and I have proved that it does not
derive any other steps by the actual execution trace by a world
class x86 emulator libx86emu.
On 9/10/2024 3:52 AM, Mikko wrote:
On 2024-09-09 18:19:26 +0000, olcott said:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:The directly executed HHH is a decider.
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation >>>>>>>
A halt decider is a Turing machine that computes the mapping from
its finite string input to the behavior that this finite string >>>>>>>>>>>>>> specifies.
A halt decider needn't compute the full behaviour, only whether >>>>>>>>>>>>> that behaviour is finite or infinite.
Local Halt Decider: Infinite Recursion Detected Simulation Stopped >>>>>>>>>>>>
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return and >>>>>>>>> therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original
behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
A correct emulation of DDD does reach the machine address 0000217f and
a little later 00002183.
*That is counter-factual and you cannot possibly show otherwise*
On 9/10/2024 3:52 AM, Mikko wrote:
On 2024-09-09 18:19:26 +0000, olcott said:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:The directly executed HHH is a decider.
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation >>>>>>>
A halt decider is a Turing machine that computes the >>>>>>>>>>>>>> mapping from
its finite string input to the behavior that this finite >>>>>>>>>>>>>> string
specifies.
A halt decider needn't compute the full behaviour, only >>>>>>>>>>>>> whether
that behaviour is finite or infinite.
Local Halt Decider: Infinite Recursion Detected Simulation >>>>>>>>>>>> Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not
return and
therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original
behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
A correct emulation of DDD does reach the machine address 0000217f and
a little later 00002183.
*That is counter-factual and you cannot possibly show otherwise*
*Here are the verified facts*
*any attempt to show otherwise cannot possibly succeed*
DDD emulated by the directly executed HHH derived these steps:
00002172, 00002173, 00002175, 0000217a
thus HHH emulated by the directly executed HHH cannot possibly
derive and other steps and I have proved that it does not
derive any other steps by the actual execution trace by a world
class x86 emulator libx86emu.
Op 09.sep.2024 om 20:19 schreef olcott:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:The directly executed HHH is a decider.
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation >>>>>>
A halt decider is a Turing machine that computes the mapping from >>>>>>>>>>>>> its finite string input to the behavior that this finite string >>>>>>>>>>>>> specifies.
A halt decider needn't compute the full behaviour, only whether >>>>>>>>>>>> that behaviour is finite or infinite.
Local Halt Decider: Infinite Recursion Detected Simulation Stopped >>>>>>>>>>>
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return and >>>>>>>> therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original
behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
It seems olcott also knows that HHH fails to reach the machine address 00002183, because it stop the
simulation too soon. A correct simulation by the unmodified world class simulator shows that it does
reach machine address 00002183. Even HHH1 shows it. But HHH fails to machine address 00002183.
Why does olcott ignore this truth? The evidence is overwhelming.
On 9/10/2024 6:50 AM, Fred. Zwarts wrote:
Op 09.sep.2024 om 20:19 schreef olcott:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:The directly executed HHH is a decider.
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation >>>>>>>
A halt decider is a Turing machine that computes the >>>>>>>>>>>>>> mapping from
its finite string input to the behavior that this finite >>>>>>>>>>>>>> string
specifies.
A halt decider needn't compute the full behaviour, only >>>>>>>>>>>>> whether
that behaviour is finite or infinite.
Local Halt Decider: Infinite Recursion Detected Simulation >>>>>>>>>>>> Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not
return and
therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original
behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
It seems olcott also knows that HHH fails to reach the machine address
00002183, because it stop the simulation too soon.
No the issue is the you insist on remaining too stupid
to understand unreachable code.
void Infinite_Recursion()
{
Infinite_Recursion();
OutString("Can't possibly get here!");
}
A correct simulation by the unmodified world class simulator shows
that it does reach machine address 00002183. Even HHH1 shows it. But
HHH fails to machine address 00002183.
Why does olcott ignore this truth? The evidence is overwhelming.
On 9/10/2024 6:45 AM, Fred. Zwarts wrote:
Op 09.sep.2024 om 20:55 schreef olcott:
On 9/9/2024 6:11 AM, Fred. Zwarts wrote:Claim without evidence.
Op 08.sep.2024 om 16:16 schreef olcott:
On 9/8/2024 5:05 AM, Fred. Zwarts wrote:
Op 07.sep.2024 om 16:54 schreef olcott:
On 9/7/2024 9:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:38:22 -0500 schrieb olcott:
On 9/5/2024 12:22 PM, joes wrote:Except for the outermost one.
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott:
On 9/5/2024 11:56 AM, joes wrote:
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott:
On 9/5/2024 11:34 AM, joes wrote:
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott: >>>>>>>>>>>>>>> On 9/5/2024 10:57 AM, joes wrote:
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott: >>>>>>>>>>>>>>>>> On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said: >>>>>>>>>>>>>>>>>>> On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
which is waiting for the next HHH...But why does HHH halt and return that itself doesn’t halt? >>>>>>>>> When HHH is waiting for the next HHH which is waiting for the >>>>>>>>> next HHHThe first HHH cannot wait for its HHH to abort which isThe directly executed HHH correctly determines that its >>>>>>>>>>>>> emulated DDDWhy doesn’t the simulated HHH abort?
must be aborted because DDD keeps *THE EMULATED HHH* stuck in >>>>>>>>>>>>> recursive emulation.
waiting for
its HHH to abort on and on with no HHH ever aborting.
we have an infinite chain of waiting and never aborting.
When the outermost HHH is waiting for its emulated HHH
to abort and this emulated HHH is waiting on its emulated
HHH to abort on and on forever waiting and none ever abort.
Dreaming again of a HHH that does not abort.
In other words you have no idea what a hypothesis is?
I do, but olcott thinks a dream is sufficient to prove a hypothesis.
The outermost HHH can either abort it emulation of DDD
or not and either way DDD cannot possibly reach its final
halt state of its "return" instruction and halt.
Exactly, so either way the simulation fails to reach the end.
HHH cannot possibly simulate itself correctly up to the end.
Thus must be aborted and is necessarily correct to report non-halting.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002182] c3 ret
Size in bytes:(0018) [00002183]
DDD emulated by the directly executed HHH derives these steps:
00002172, 00002173, 00002175, 0000217a
The last of these steps calld HHH(DDD)
HHH emulated by the directly executed HHH cannot possibly derive
any other steps and I have proved this by the actual execution trace
by a world class x86 emulator libx86emu.
On 9/11/2024 2:35 AM, Mikko wrote:
On 2024-09-11 00:21:36 +0000, olcott said:
On 9/10/2024 3:52 AM, Mikko wrote:
On 2024-09-09 18:19:26 +0000, olcott said:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:The directly executed HHH is a decider.
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation >>>>>>>>>
A halt decider is a Turing machine that computes the >>>>>>>>>>>>>>>> mapping from
its finite string input to the behavior that this finite >>>>>>>>>>>>>>>> string
specifies.
A halt decider needn't compute the full behaviour, only >>>>>>>>>>>>>>> whether
that behaviour is finite or infinite.
Local Halt Decider: Infinite Recursion Detected Simulation >>>>>>>>>>>>>> Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not >>>>>>>>>>> return and
therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original
behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
A correct emulation of DDD does reach the machine address 0000217f and >>>> a little later 00002183.
*That is counter-factual and you cannot possibly show otherwise*
A halt decider is required to predict about the actual execution,
not a couterfactual assumption.
False assumption.
A halt decider must compute the mapping that its input
finite string specifies.
It is ridiculously stupid to assume that the fact
that DDD calls its own emulator does not change
its behavior relative to not calling its own emulator.
On 9/10/2024 6:45 AM, Fred. Zwarts wrote:
Op 09.sep.2024 om 20:55 schreef olcott:
On 9/9/2024 6:11 AM, Fred. Zwarts wrote:Claim without evidence.
Op 08.sep.2024 om 16:16 schreef olcott:
On 9/8/2024 5:05 AM, Fred. Zwarts wrote:
Op 07.sep.2024 om 16:54 schreef olcott:
On 9/7/2024 9:46 AM, joes wrote:
Am Sat, 07 Sep 2024 08:38:22 -0500 schrieb olcott:
On 9/5/2024 12:22 PM, joes wrote:Except for the outermost one.
Am Thu, 05 Sep 2024 12:17:01 -0500 schrieb olcott:
On 9/5/2024 11:56 AM, joes wrote:
Am Thu, 05 Sep 2024 11:52:04 -0500 schrieb olcott:
On 9/5/2024 11:34 AM, joes wrote:
Am Thu, 05 Sep 2024 11:10:40 -0500 schrieb olcott: >>>>>>>>>>>>>>> On 9/5/2024 10:57 AM, joes wrote:
Am Thu, 05 Sep 2024 08:24:20 -0500 schrieb olcott: >>>>>>>>>>>>>>>>> On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said: >>>>>>>>>>>>>>>>>>> On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:
which is waiting for the next HHH...But why does HHH halt and return that itself doesn’t halt? >>>>>>>>> When HHH is waiting for the next HHH which is waiting for the >>>>>>>>> next HHHThe first HHH cannot wait for its HHH to abort which isThe directly executed HHH correctly determines that its >>>>>>>>>>>>> emulated DDDWhy doesn’t the simulated HHH abort?
must be aborted because DDD keeps *THE EMULATED HHH* stuck in >>>>>>>>>>>>> recursive emulation.
waiting for
its HHH to abort on and on with no HHH ever aborting.
we have an infinite chain of waiting and never aborting.
When the outermost HHH is waiting for its emulated HHH
to abort and this emulated HHH is waiting on its emulated
HHH to abort on and on forever waiting and none ever abort.
Dreaming again of a HHH that does not abort.
In other words you have no idea what a hypothesis is?
I do, but olcott thinks a dream is sufficient to prove a hypothesis.
The outermost HHH can either abort it emulation of DDD
or not and either way DDD cannot possibly reach its final
halt state of its "return" instruction and halt.
Exactly, so either way the simulation fails to reach the end.
HHH cannot possibly simulate itself correctly up to the end.
Thus must be aborted and is necessarily correct to report non-halting.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
DDD emulated by the directly executed HHH derives these steps:
00002172, 00002173, 00002175, 0000217a
The last of these steps calld HHH(DDD)
HHH emulated by the directly executed HHH cannot possibly derive
any other steps and I have proved this by the actual execution trace
by a world class x86 emulator libx86emu.
https://www.liarparadox.org/HHH(DDD).pdf
Here is the complete sourcecode of HHH and DDD https://github.com/plolcott/x86utm/blob/master/Halt7.c
The only only possible rebuttals to this are nonsense
gibberish or baseless claims.
On 9/11/2024 2:35 AM, Mikko wrote:
On 2024-09-11 00:21:36 +0000, olcott said:
On 9/10/2024 3:52 AM, Mikko wrote:
On 2024-09-09 18:19:26 +0000, olcott said:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:The directly executed HHH is a decider.
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation >>>>>>>>>
A halt decider is a Turing machine that computes the >>>>>>>>>>>>>>>> mapping from
its finite string input to the behavior that this finite >>>>>>>>>>>>>>>> string
specifies.
A halt decider needn't compute the full behaviour, only >>>>>>>>>>>>>>> whether
that behaviour is finite or infinite.
Local Halt Decider: Infinite Recursion Detected Simulation >>>>>>>>>>>>>> Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not >>>>>>>>>>> return and
therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original
behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
A correct emulation of DDD does reach the machine address 0000217f and >>>> a little later 00002183.
*That is counter-factual and you cannot possibly show otherwise*
A halt decider is required to predict about the actual execution,
not a couterfactual assumption.
False assumption.
A halt decider must compute the mapping that its input
finite string specifies.
It is ridiculously stupid to assume that the fact
that DDD calls its own emulator does not change
its behavior relative to not calling its own emulator.
Why do you have a religious conviction to this stupid
mistake?
On 9/11/2024 11:23 AM, Fred. Zwarts wrote:
Op 11.sep.2024 om 13:49 schreef olcott:
On 9/10/2024 6:50 AM, Fred. Zwarts wrote:
Op 09.sep.2024 om 20:19 schreef olcott:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:The directly executed HHH is a decider.
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation >>>>>>>>>
A halt decider is a Turing machine that computes the >>>>>>>>>>>>>>>> mapping from
its finite string input to the behavior that this finite >>>>>>>>>>>>>>>> string
specifies.
A halt decider needn't compute the full behaviour, only >>>>>>>>>>>>>>> whether
that behaviour is finite or infinite.
Local Halt Decider: Infinite Recursion Detected Simulation >>>>>>>>>>>>>> Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not >>>>>>>>>>> return and
therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original
behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
It seems olcott also knows that HHH fails to reach the machine
address 00002183, because it stop the simulation too soon.
No the issue is the you insist on remaining too stupid
to understand unreachable code.
void Infinite_Recursion()
{
Infinite_Recursion();
OutString("Can't possibly get here!");
Olcott keeps dreaming of infinite recursions, even when HHH aborts
after two cycles. Two is not infinite.
Yet in this same way Infinite_Recursion() itself
it not infinite when HHH aborts it in two cycles.
What makes Infinite_Recursion() non-halting even
when it stops being emulated is that it cannot
possibly reach past its own first instruction.
On 9/11/2024 11:31 AM, Fred. Zwarts wrote:
Op 11.sep.2024 om 13:41 schreef olcott:
On 9/11/2024 2:35 AM, Mikko wrote:
On 2024-09-11 00:21:36 +0000, olcott said:
On 9/10/2024 3:52 AM, Mikko wrote:
On 2024-09-09 18:19:26 +0000, olcott said:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider >>>>>>>>>>>>>>>> Simulation
A halt decider is a Turing machine that computes the >>>>>>>>>>>>>>>>>> mapping from
its finite string input to the behavior that this >>>>>>>>>>>>>>>>>> finite string
specifies.
A halt decider needn't compute the full behaviour, only >>>>>>>>>>>>>>>>> whether
that behaviour is finite or infinite.
The directly executed HHH is a decider.If that iis true it means that HHH called by DDD does not >>>>>>>>>>>>> return andLocal Halt Decider: Infinite Recursion Detected >>>>>>>>>>>>>>>> Simulation Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said. >>>>>>>>>>>>>>> Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state. >>>>>>>>>>>>>
therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original >>>>>>>> behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
A correct emulation of DDD does reach the machine address 0000217f >>>>>> and
a little later 00002183.
*That is counter-factual and you cannot possibly show otherwise*
A halt decider is required to predict about the actual execution,
not a couterfactual assumption.
False assumption.
A halt decider must compute the mapping that its input
finite string specifies.
And the input, a finite string that describes a program based on the
aborting HHH, describes a halting program, as proven by the direct
execution, by the unmodified world class simulator and even by HHH1.
The semantics of the x86 language allows only one behaviour for the
finite string. Any program claiming another behaviour violates the
semantics of the x86 language,
It is ridiculously stupid to assume that the fact
that DDD calls its own emulator does not change
its behavior relative to not calling its own emulator.
It ridiculous to assume that the semantics of the x86 language allows
another behaviour for the finite string.
Why do you have a religious conviction to this stupid
mistake?
Once we understand we can make a machine that detects
lies in real time on the basis of knowing truth we will
know that we didn't have to die from climate change or
allow the rise of the fourth Reich.
On 9/11/2024 6:48 PM, Richard Damon wrote:
On 9/11/24 7:17 PM, olcott wrote:
On 9/11/2024 11:31 AM, Fred. Zwarts wrote:
Op 11.sep.2024 om 13:41 schreef olcott:
On 9/11/2024 2:35 AM, Mikko wrote:
On 2024-09-11 00:21:36 +0000, olcott said:
On 9/10/2024 3:52 AM, Mikko wrote:
On 2024-09-09 18:19:26 +0000, olcott said:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said: >>>>>>>>>>>>>>>>>>>New slave_stack at:1038c4 Begin Local Halt Decider >>>>>>>>>>>>>>>>>> Simulation
A halt decider is a Turing machine that computes the >>>>>>>>>>>>>>>>>>>> mapping from
its finite string input to the behavior that this >>>>>>>>>>>>>>>>>>>> finite string
specifies.
A halt decider needn't compute the full behaviour, >>>>>>>>>>>>>>>>>>> only whether
that behaviour is finite or infinite.
The directly executed HHH is a decider.If that iis true it means that HHH called by DDD does not >>>>>>>>>>>>>>> return andLocal Halt Decider: Infinite Recursion Detected >>>>>>>>>>>>>>>>>> Simulation Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said. >>>>>>>>>>>>>>>>> Unvortunately I can't agree with what you say. >>>>>>>>>>>>>>>>> HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state. >>>>>>>>>>>>>>>
therefore is not a ceicder.
If the simulation is incorrect it may change anything. >>>>>>>>>>>>
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original >>>>>>>>>> behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping >>>>>>>>> [00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
A correct emulation of DDD does reach the machine address
0000217f and
a little later 00002183.
*That is counter-factual and you cannot possibly show otherwise*
A halt decider is required to predict about the actual execution,
not a couterfactual assumption.
False assumption.
A halt decider must compute the mapping that its input
finite string specifies.
And the input, a finite string that describes a program based on the
aborting HHH, describes a halting program, as proven by the direct
execution, by the unmodified world class simulator and even by HHH1.
The semantics of the x86 language allows only one behaviour for the
finite string. Any program claiming another behaviour violates the
semantics of the x86 language,
It is ridiculously stupid to assume that the fact
that DDD calls its own emulator does not change
its behavior relative to not calling its own emulator.
It ridiculous to assume that the semantics of the x86 language
allows another behaviour for the finite string.
Why do you have a religious conviction to this stupid
mistake?
Once we understand we can make a machine that detects
lies in real time on the basis of knowing truth we will
know that we didn't have to die from climate change or
allow the rise of the fourth Reich.
Are you sure we can do that?
The problem seems to be that you are ASSUMING it.
The key is (as I have been saying for a long time)
To anchor the accurate model of the actual world in axioms.
*AS FREAKING DETAILED BELOW*
Getting from Generative AI to Trustworthy AI:
What LLMs might learn from Cyc https://arxiv.org/ftp/arxiv/papers/2308/2308.04445.pdf
*Some of the most brilliant minds in AI for 40 years*
Doug Lenat Gary Marcus July 31, 2023
On 9/11/2024 2:35 AM, Mikko wrote:
On 2024-09-11 00:21:36 +0000, olcott said:
On 9/10/2024 3:52 AM, Mikko wrote:
On 2024-09-09 18:19:26 +0000, olcott said:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:The directly executed HHH is a decider.
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation >>>>>>>>>
A halt decider is a Turing machine that computes the mapping from
its finite string input to the behavior that this finite string
specifies.
A halt decider needn't compute the full behaviour, only whether >>>>>>>>>>>>>>> that behaviour is finite or infinite.
Local Halt Decider: Infinite Recursion Detected Simulation Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return and
therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original
behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
A correct emulation of DDD does reach the machine address 0000217f and >>>> a little later 00002183.
*That is counter-factual and you cannot possibly show otherwise*
A halt decider is required to predict about the actual execution,
not a couterfactual assumption.
False assumption.
On 9/11/2024 11:23 AM, Fred. Zwarts wrote:
Op 11.sep.2024 om 13:49 schreef olcott:
On 9/10/2024 6:50 AM, Fred. Zwarts wrote:
Op 09.sep.2024 om 20:19 schreef olcott:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:The directly executed HHH is a decider.
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation >>>>>>>>>
A halt decider is a Turing machine that computes the mapping from
its finite string input to the behavior that this finite string
specifies.
A halt decider needn't compute the full behaviour, only whether >>>>>>>>>>>>>>> that behaviour is finite or infinite.
Local Halt Decider: Infinite Recursion Detected Simulation Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return and
therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original
behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
It seems olcott also knows that HHH fails to reach the machine address >>>> 00002183, because it stop the simulation too soon.
No the issue is the you insist on remaining too stupid
to understand unreachable code.
void Infinite_Recursion()
{
Infinite_Recursion();
OutString("Can't possibly get here!");
Olcott keeps dreaming of infinite recursions, even when HHH aborts
after two cycles. Two is not infinite.
Yet in this same way Infinite_Recursion() itself
it not infinite when HHH aborts it in two cycles.
What makes Infinite_Recursion() non-halting even
when it stops being emulated is that it cannot
possibly reach past its own first instruction.
On 9/11/2024 11:23 AM, Fred. Zwarts wrote:Olcott keeps dreaming of infinite recursions, when in fact there are
Op 11.sep.2024 om 13:49 schreef olcott:
On 9/10/2024 6:50 AM, Fred. Zwarts wrote:
Op 09.sep.2024 om 20:19 schreef olcott:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:The directly executed HHH is a decider.
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation >>>>>>>>>
A halt decider is a Turing machine that computes the >>>>>>>>>>>>>>>> mapping from
its finite string input to the behavior that this finite >>>>>>>>>>>>>>>> string
specifies.
A halt decider needn't compute the full behaviour, only >>>>>>>>>>>>>>> whether
that behaviour is finite or infinite.
Local Halt Decider: Infinite Recursion Detected Simulation >>>>>>>>>>>>>> Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not >>>>>>>>>>> return and
therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original
behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
It seems olcott also knows that HHH fails to reach the machine
address 00002183, because it stop the simulation too soon.
No the issue is the you insist on remaining too stupid
to understand unreachable code.
void Infinite_Recursion()
{
Infinite_Recursion();
OutString("Can't possibly get here!");
Olcott keeps dreaming of infinite recursions, even when HHH aborts
after two cycles. Two is not infinite.
Yet in this same way Infinite_Recursion() itself
it not infinite when HHH aborts it in two cycles.
What makes Infinite_Recursion() non-halting even
when it stops being emulated is that it cannot
possibly reach past its own first instruction.
On 9/12/2024 2:54 AM, Mikko wrote:
On 2024-09-11 11:41:42 +0000, olcott said:
On 9/11/2024 2:35 AM, Mikko wrote:
On 2024-09-11 00:21:36 +0000, olcott said:
On 9/10/2024 3:52 AM, Mikko wrote:
On 2024-09-09 18:19:26 +0000, olcott said:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider >>>>>>>>>>>>>>>> Simulation
A halt decider is a Turing machine that computes the >>>>>>>>>>>>>>>>>> mapping from
its finite string input to the behavior that this >>>>>>>>>>>>>>>>>> finite string
specifies.
A halt decider needn't compute the full behaviour, only >>>>>>>>>>>>>>>>> whether
that behaviour is finite or infinite.
The directly executed HHH is a decider.If that iis true it means that HHH called by DDD does not >>>>>>>>>>>>> return andLocal Halt Decider: Infinite Recursion Detected >>>>>>>>>>>>>>>> Simulation Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said. >>>>>>>>>>>>>>> Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state. >>>>>>>>>>>>>
therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original >>>>>>>> behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
A correct emulation of DDD does reach the machine address 0000217f >>>>>> and
a little later 00002183.
*That is counter-factual and you cannot possibly show otherwise*
A halt decider is required to predict about the actual execution,
not a couterfactual assumption.
False assumption.
It is not an assumption.
"In computability theory, the halting problem is the problem of
determining, from a description of an arbitrary computer program
and an input, whether the program will finish running, or continue
to run forever." -- https://en.wikipedia.org/wiki/Halting_problem
That definition obviously contains what I said above.
It is ridiculously stupid to simply ignore the verified
fact that DDD calls HHH(DDD) in recursive emulation and
DDD DOES NOT call HHH1(DDD) in recursive emulation.
On 9/12/2024 3:07 AM, Mikko wrote:
On 2024-09-11 22:35:07 +0000, olcott said:
On 9/11/2024 11:23 AM, Fred. Zwarts wrote:
Op 11.sep.2024 om 13:49 schreef olcott:
On 9/10/2024 6:50 AM, Fred. Zwarts wrote:
Op 09.sep.2024 om 20:19 schreef olcott:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider >>>>>>>>>>>>>>>> Simulation
A halt decider is a Turing machine that computes the >>>>>>>>>>>>>>>>>> mapping from
its finite string input to the behavior that this >>>>>>>>>>>>>>>>>> finite string
specifies.
A halt decider needn't compute the full behaviour, only >>>>>>>>>>>>>>>>> whether
that behaviour is finite or infinite.
The directly executed HHH is a decider.If that iis true it means that HHH called by DDD does not >>>>>>>>>>>>> return andLocal Halt Decider: Infinite Recursion Detected >>>>>>>>>>>>>>>> Simulation Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said. >>>>>>>>>>>>>>> Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state. >>>>>>>>>>>>>
therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original >>>>>>>> behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
It seems olcott also knows that HHH fails to reach the machine
address 00002183, because it stop the simulation too soon.
No the issue is the you insist on remaining too stupid
to understand unreachable code.
void Infinite_Recursion()
{
Infinite_Recursion();
OutString("Can't possibly get here!");
Olcott keeps dreaming of infinite recursions, even when HHH aborts
after two cycles. Two is not infinite.
Yet in this same way Infinite_Recursion() itself
it not infinite when HHH aborts it in two cycles.
What makes Infinite_Recursion() non-halting even
when it stops being emulated is that it cannot
possibly reach past its own first instruction.
That
int main(void) {
Infinite_Recursion();
return 0;
}
never returns makes Infinite_Recursion non-halting.
void DDD()
{
HHH(DDD);
return;
}
int main(void) {
HHH(DDD);
return 0;
}
The fact that DDD emulated by HHH never returns
makes DDD() non-halting.
On 9/11/2024 9:35 PM, Richard Damon wrote:
On 9/11/24 10:15 PM, olcott wrote:
On 9/11/2024 6:48 PM, Richard Damon wrote:
On 9/11/24 7:17 PM, olcott wrote:
On 9/11/2024 11:31 AM, Fred. Zwarts wrote:
Op 11.sep.2024 om 13:41 schreef olcott:
On 9/11/2024 2:35 AM, Mikko wrote:
On 2024-09-11 00:21:36 +0000, olcott said:
On 9/10/2024 3:52 AM, Mikko wrote:A halt decider is required to predict about the actual execution, >>>>>>>> not a couterfactual assumption.
On 2024-09-09 18:19:26 +0000, olcott said:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott: >>>>>>>>>>>>>>>> On 9/6/2024 6:19 AM, Mikko wrote:
What does simulating it change about that?On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said: >>>>>>>>>>>>>>>>>>>> On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said: >>>>>>>>>>>>>>>>>>>>>New slave_stack at:1038c4 Begin Local Halt Decider >>>>>>>>>>>>>>>>>>>> Simulation
A halt decider is a Turing machine that computes >>>>>>>>>>>>>>>>>>>>>> the mapping from
its finite string input to the behavior that this >>>>>>>>>>>>>>>>>>>>>> finite string
specifies.
A halt decider needn't compute the full behaviour, >>>>>>>>>>>>>>>>>>>>> only whether
that behaviour is finite or infinite. >>>>>>>>>>>>>>>>>>>>>
The directly executed HHH is a decider.If that iis true it means that HHH called by DDD does >>>>>>>>>>>>>>>>> not return andDDD emulated by HHH never reaches it final halt state. >>>>>>>>>>>>>>>>>Local Halt Decider: Infinite Recursion Detected >>>>>>>>>>>>>>>>>>>> Simulation Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said. >>>>>>>>>>>>>>>>>>> Unvortunately I can't agree with what you say. >>>>>>>>>>>>>>>>>>> HHH terminates,
os DDD obviously terminates, too. No valid >>>>>>>>>>>>>>>>>>
therefore is not a ceicder.
If the simulation is incorrect it may change anything. >>>>>>>>>>>>>>
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original >>>>>>>>>>>> behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping >>>>>>>>>>> [00002173] 8bec mov ebp,esp ; housekeeping >>>>>>>>>>> [00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
A correct emulation of DDD does reach the machine address
0000217f and
a little later 00002183.
*That is counter-factual and you cannot possibly show otherwise* >>>>>>>>
False assumption.
A halt decider must compute the mapping that its input
finite string specifies.
And the input, a finite string that describes a program based on
the aborting HHH, describes a halting program, as proven by the
direct execution, by the unmodified world class simulator and even >>>>>> by HHH1. The semantics of the x86 language allows only one
behaviour for the finite string. Any program claiming another
behaviour violates the semantics of the x86 language,
It is ridiculously stupid to assume that the fact
that DDD calls its own emulator does not change
its behavior relative to not calling its own emulator.
It ridiculous to assume that the semantics of the x86 language
allows another behaviour for the finite string.
Why do you have a religious conviction to this stupid
mistake?
Once we understand we can make a machine that detects
lies in real time on the basis of knowing truth we will
know that we didn't have to die from climate change or
allow the rise of the fourth Reich.
Are you sure we can do that?
The problem seems to be that you are ASSUMING it.
The key is (as I have been saying for a long time)
To anchor the accurate model of the actual world in axioms.
And how do you know your axiom about the actual world are correct?
Things about what we have defined are one thing. (like defining a foot
to be 12 inches). But anything that is based on observation inherently
has a degree of error, and thus we can't actually KNOW if our
conclusions are true.
*AS FREAKING DETAILED BELOW*
Getting from Generative AI to Trustworthy AI:
What LLMs might learn from Cyc
https://arxiv.org/ftp/arxiv/papers/2308/2308.04445.pdf
Which absolutely can't tell if something about an empirical statement
is actually correct, as it is a pure analytic system.
Such a system can immediately call out the hired liars
of climate change by doing as I have have done directly
studying the raw data.
It can also fully understand every argument ever made that
climate change is real and every counter-argument making
the counter arguments look ridiculously foolish at every
language level from kindergarten to PhD expert in the field.
*It only needs the single rule of coherence to do this*
(and direct access to everything ever written by anyone).
Refuting that election fraud changed the outcome of the 2020
presidential election is only a high school level debate.
No one else in the history of the US presidency (Besides Trump)
has ever exactly copied Hitler by repeating the same lie over
and over until 45% of voters accepted it as true entirely on the
basis of this repetition. *It has always been completely baseless*
Your problem, again, is that you just don't understand what you are
reading, or talking about, because you have literally decided not to
study the core of logic to know how it works, and thus are speaking
out of pure ignorance.
*Some of the most brilliant minds in AI for 40 years*
Doug Lenat Gary Marcus July 31, 2023
Op 09.sep.2024 om 20:19 schreef olcott:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:The directly executed HHH is a decider.
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation >>>>>>
A halt decider is a Turing machine that computes the mapping from >>>>>>>>>>>>> its finite string input to the behavior that this finite string >>>>>>>>>>>>> specifies.
A halt decider needn't compute the full behaviour, only whether >>>>>>>>>>>> that behaviour is finite or infinite.
Local Halt Decider: Infinite Recursion Detected Simulation Stopped >>>>>>>>>>>
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return and >>>>>>>> therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original
behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
It seems olcott also knows that HHH fails to reach the machine address 00002183, because it stop the
simulation too soon. A correct simulation by the unmodified world class simulator shows that it does
reach machine address 00002183. Even HHH1 shows it. But HHH fails to machine address 00002183.
Why does olcott ignore this truth? The evidence is overwhelming.
Op 09.sep.2024 om 20:19 schreef olcott:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:The directly executed HHH is a decider.
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider Simulation >>>>>>
A halt decider is a Turing machine that computes the mapping from >>>>>>>>>>>>> its finite string input to the behavior that this finite string >>>>>>>>>>>>> specifies.
A halt decider needn't compute the full behaviour, only whether >>>>>>>>>>>> that behaviour is finite or infinite.
Local Halt Decider: Infinite Recursion Detected Simulation Stopped >>>>>>>>>>>
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said.
Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state.
If that iis true it means that HHH called by DDD does not return and >>>>>>>> therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original
behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
It seems olcott also knows that HHH fails to reach the machine address 00002183, because it stop the
simulation too soon. A correct simulation by the unmodified world class simulator shows that it does
reach machine address 00002183. Even HHH1 shows it. But HHH fails to machine address 00002183.
Why does olcott ignore this truth? The evidence is overwhelming.
On 9/12/2024 3:07 AM, Mikko wrote:
On 2024-09-11 22:35:07 +0000, olcott said:
On 9/11/2024 11:23 AM, Fred. Zwarts wrote:
Op 11.sep.2024 om 13:49 schreef olcott:
On 9/10/2024 6:50 AM, Fred. Zwarts wrote:
Op 09.sep.2024 om 20:19 schreef olcott:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider >>>>>>>>>>>>>>>> Simulation
A halt decider is a Turing machine that computes the >>>>>>>>>>>>>>>>>> mapping from
its finite string input to the behavior that this >>>>>>>>>>>>>>>>>> finite string
specifies.
A halt decider needn't compute the full behaviour, only >>>>>>>>>>>>>>>>> whether
that behaviour is finite or infinite.
The directly executed HHH is a decider.If that iis true it means that HHH called by DDD does not >>>>>>>>>>>>> return andLocal Halt Decider: Infinite Recursion Detected >>>>>>>>>>>>>>>> Simulation Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said. >>>>>>>>>>>>>>> Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state. >>>>>>>>>>>>>
therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original >>>>>>>> behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
It seems olcott also knows that HHH fails to reach the machine
address 00002183, because it stop the simulation too soon.
No the issue is the you insist on remaining too stupid
to understand unreachable code.
void Infinite_Recursion()
{
Infinite_Recursion();
OutString("Can't possibly get here!");
Olcott keeps dreaming of infinite recursions, even when HHH aborts
after two cycles. Two is not infinite.
Yet in this same way Infinite_Recursion() itself
it not infinite when HHH aborts it in two cycles.
What makes Infinite_Recursion() non-halting even
when it stops being emulated is that it cannot
possibly reach past its own first instruction.
That
int main(void) {
Infinite_Recursion();
return 0;
}
never returns makes Infinite_Recursion non-halting.
void DDD()
{
HHH(DDD);
return;
}
int main(void) {
HHH(DDD);
return 0;
}
The fact that DDD emulated by HHH never returns
makes DDD() non-halting.
On 9/12/2024 2:54 AM, Mikko wrote:
On 2024-09-11 11:41:42 +0000, olcott said:
On 9/11/2024 2:35 AM, Mikko wrote:
On 2024-09-11 00:21:36 +0000, olcott said:
On 9/10/2024 3:52 AM, Mikko wrote:
On 2024-09-09 18:19:26 +0000, olcott said:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said:New slave_stack at:1038c4 Begin Local Halt Decider >>>>>>>>>>>>>>>> Simulation
A halt decider is a Turing machine that computes the >>>>>>>>>>>>>>>>>> mapping from
its finite string input to the behavior that this >>>>>>>>>>>>>>>>>> finite string
specifies.
A halt decider needn't compute the full behaviour, only >>>>>>>>>>>>>>>>> whether
that behaviour is finite or infinite.
The directly executed HHH is a decider.If that iis true it means that HHH called by DDD does not >>>>>>>>>>>>> return andLocal Halt Decider: Infinite Recursion Detected >>>>>>>>>>>>>>>> Simulation Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said. >>>>>>>>>>>>>>> Unvortunately I can't agree with what you say.
HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state. >>>>>>>>>>>>>
therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original >>>>>>>> behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
A correct emulation of DDD does reach the machine address 0000217f >>>>>> and
a little later 00002183.
*That is counter-factual and you cannot possibly show otherwise*
A halt decider is required to predict about the actual execution,
not a couterfactual assumption.
False assumption.
It is not an assumption.
"In computability theory, the halting problem is the problem of
determining, from a description of an arbitrary computer program
and an input, whether the program will finish running, or continue
to run forever." -- https://en.wikipedia.org/wiki/Halting_problem
That definition obviously contains what I said above.
It is ridiculously stupid to simply ignore the verified
fact that DDD calls HHH(DDD) in recursive emulation and
DDD DOES NOT call HHH1(DDD) in recursive emulation.
Op 12.sep.2024 om 13:04 schreef olcott:
On 9/12/2024 2:54 AM, Mikko wrote:
On 2024-09-11 11:41:42 +0000, olcott said:
On 9/11/2024 2:35 AM, Mikko wrote:
On 2024-09-11 00:21:36 +0000, olcott said:
On 9/10/2024 3:52 AM, Mikko wrote:
On 2024-09-09 18:19:26 +0000, olcott said:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said: >>>>>>>>>>>>>>>>>>New slave_stack at:1038c4 Begin Local Halt Decider >>>>>>>>>>>>>>>>> Simulation
A halt decider is a Turing machine that computes the >>>>>>>>>>>>>>>>>>> mapping from
its finite string input to the behavior that this >>>>>>>>>>>>>>>>>>> finite string
specifies.
A halt decider needn't compute the full behaviour, >>>>>>>>>>>>>>>>>> only whether
that behaviour is finite or infinite.
The directly executed HHH is a decider.If that iis true it means that HHH called by DDD does not >>>>>>>>>>>>>> return andLocal Halt Decider: Infinite Recursion Detected >>>>>>>>>>>>>>>>> Simulation Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said. >>>>>>>>>>>>>>>> Unvortunately I can't agree with what you say. >>>>>>>>>>>>>>>> HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state. >>>>>>>>>>>>>>
therefore is not a ceicder.
If the simulation is incorrect it may change anything.
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original >>>>>>>>> behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping >>>>>>>> [00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
A correct emulation of DDD does reach the machine address
0000217f and
a little later 00002183.
*That is counter-factual and you cannot possibly show otherwise*
A halt decider is required to predict about the actual execution,
not a couterfactual assumption.
False assumption.
It is not an assumption.
"In computability theory, the halting problem is the problem of
determining, from a description of an arbitrary computer program
and an input, whether the program will finish running, or continue
to run forever." -- https://en.wikipedia.org/wiki/Halting_problem
That definition obviously contains what I said above.
It is ridiculously stupid to simply ignore the verified
fact that DDD calls HHH(DDD) in recursive emulation and
DDD DOES NOT call HHH1(DDD) in recursive emulation.
That fact is not ignored. But there are similarities and differences
between these two cases. The similarities are that there are recursion,
but neither in the first case, nor in the second case there are
*infinite* recursions.
The difference is that HHH1 is able to reach the end of the simulation,
but HHH fails to reach the end, because it decides to stop the
simulation too soon. here is a bug in the pattern recognition logic of
HHH, which makes it stop the simulation before it has reached the end of
the program.
The claim that differences are ignored, has no evidence. What olcott
ignores is the bug in the 'recognition for infinite recursion' in HHH.
HHH produces false negatives on the decision whether a program halts.
This has been proven with:
int main() {
return HHH(main);
}
where HHH halts but decides it does not halt.
On 9/13/2024 4:38 AM, Fred. Zwarts wrote:
Op 12.sep.2024 om 13:04 schreef olcott:
On 9/12/2024 2:54 AM, Mikko wrote:
On 2024-09-11 11:41:42 +0000, olcott said:
On 9/11/2024 2:35 AM, Mikko wrote:
On 2024-09-11 00:21:36 +0000, olcott said:
On 9/10/2024 3:52 AM, Mikko wrote:
On 2024-09-09 18:19:26 +0000, olcott said:
On 9/8/2024 9:53 AM, Mikko wrote:
On 2024-09-07 13:57:00 +0000, olcott said:
On 9/7/2024 3:29 AM, Mikko wrote:
On 2024-09-07 05:12:19 +0000, joes said:PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
Am Fri, 06 Sep 2024 06:42:48 -0500 schrieb olcott:
On 9/6/2024 6:19 AM, Mikko wrote:What does simulating it change about that?
On 2024-09-05 13:24:20 +0000, olcott said:
On 9/5/2024 2:34 AM, Mikko wrote:
On 2024-09-03 13:00:50 +0000, olcott said:
On 9/3/2024 5:25 AM, Mikko wrote:
On 2024-09-02 16:38:03 +0000, olcott said: >>>>>>>>>>>>>>>>>>>New slave_stack at:1038c4 Begin Local Halt Decider >>>>>>>>>>>>>>>>>> Simulation
A halt decider is a Turing machine that computes the >>>>>>>>>>>>>>>>>>>> mapping from
its finite string input to the behavior that this >>>>>>>>>>>>>>>>>>>> finite string
specifies.
A halt decider needn't compute the full behaviour, >>>>>>>>>>>>>>>>>>> only whether
that behaviour is finite or infinite.
The directly executed HHH is a decider.If that iis true it means that HHH called by DDD does not >>>>>>>>>>>>>>> return andLocal Halt Decider: Infinite Recursion Detected >>>>>>>>>>>>>>>>>> Simulation Stopped
Hence HHH(DDD)==0 is correct
Nice to see that you don't disagree with what said. >>>>>>>>>>>>>>>>> Unvortunately I can't agree with what you say. >>>>>>>>>>>>>>>>> HHH terminates,
os DDD obviously terminates, too. No valid
DDD emulated by HHH never reaches it final halt state. >>>>>>>>>>>>>>>
therefore is not a ceicder.
If the simulation is incorrect it may change anything. >>>>>>>>>>>>
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
PATHOLOGICAL RELATIONSHIPS CHANGE BEHAVIOR
However, a correct simultation faithfully imitates the original >>>>>>>>>> behaviour.
_DDD()
[00002172] 55 push ebp ; housekeeping >>>>>>>>> [00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
A correct emulation obeys the x86 machine code even
if this machine code catches the machine on fire.
It is impossible for an emulation of DDD by HHH to
reach machine address 00002183 AND YOU KNOW IT!!!
A correct emulation of DDD does reach the machine address
0000217f and
a little later 00002183.
*That is counter-factual and you cannot possibly show otherwise*
A halt decider is required to predict about the actual execution,
not a couterfactual assumption.
False assumption.
It is not an assumption.
"In computability theory, the halting problem is the problem of
determining, from a description of an arbitrary computer program
and an input, whether the program will finish running, or continue
to run forever." -- https://en.wikipedia.org/wiki/Halting_problem
That definition obviously contains what I said above.
It is ridiculously stupid to simply ignore the verified
fact that DDD calls HHH(DDD) in recursive emulation and
DDD DOES NOT call HHH1(DDD) in recursive emulation.
That fact is not ignored. But there are similarities and differences
between these two cases. The similarities are that there are
recursion, but neither in the first case, nor in the second case there
are *infinite* recursions.
You can't even get the most basic facts correctly.
There is no recursion what-so-ever between HHH1 and DDD.
_DDD()
[00002177] 55 push ebp
[00002178] 8bec mov ebp,esp
[0000217a] 6877210000 push 00002177
[0000217f] e853f4ffff call 000015d7
[00002184] 83c404 add esp,+04
[00002187] 5d pop ebp
[00002188] c3 ret
Size in bytes:(0018) [00002188]
_main()
[00002197] 55 push ebp
[00002198] 8bec mov ebp,esp
[0000219a] 6877210000 push 00002177
[0000219f] e863f3ffff call 00001507
[000021a4] 83c404 add esp,+04
[000021a7] 33c0 xor eax,eax
[000021a9] 5d pop ebp
[000021aa] c3 ret
Size in bytes:(0020) [000021aa]
machine stack stack machine assembly
address address data code language
======== ======== ======== ========= ============= [00002197][001037fb][00000000] 55 push ebp [00002198][001037fb][00000000] 8bec mov ebp,esp [0000219a][001037f7][00002177] 6877210000 push 00002177 ; push DDD [0000219f][001037f3][000021a4] e863f3ffff call 00001507 ; call HHH1
New slave_stack at:10389f
Begin Local Halt Decider Simulation Execution Trace Stored at:1138a7 [00002177][00113897][0011389b] 55 push ebp [00002178][00113897][0011389b] 8bec mov ebp,esp [0000217a][00113893][00002177] 6877210000 push 00002177 ; push DDD [0000217f][0011388f][00002184] e853f4ffff call 000015d7 ; call HHH
New slave_stack at:14e2c7
Begin Local Halt Decider Simulation Execution Trace Stored at:15e2cf [00002177][0015e2bf][0015e2c3] 55 push ebp [00002178][0015e2bf][0015e2c3] 8bec mov ebp,esp [0000217a][0015e2bb][00002177] 6877210000 push 00002177 ; push DDD [0000217f][0015e2b7][00002184] e853f4ffff call 000015d7 ; call HHH
New slave_stack at:198cef
[00002177][001a8ce7][001a8ceb] 55 push ebp [00002178][001a8ce7][001a8ceb] 8bec mov ebp,esp [0000217a][001a8ce3][00002177] 6877210000 push 00002177 ; push DDD [0000217f][001a8cdf][00002184] e853f4ffff call 000015d7 ; call HHH
Local Halt Decider: Infinite Recursion Detected Simulation Stopped
[00002184][00113897][0011389b] 83c404 add esp,+04 [00002187][0011389b][000015bc] 5d pop ebp [00002188][0011389f][0003a980] c3 ret [000021a4][001037fb][00000000] 83c404 add esp,+04 [000021a7][001037fb][00000000] 33c0 xor eax,eax [000021a9][001037ff][00000018] 5d pop ebp [000021aa][00103803][00000000] c3 ret
Number of Instructions Executed(352831) == 5266 Pages
The difference is that HHH1 is able to reach the end of the
simulation, but HHH fails to reach the end, because it decides to stop
the simulation too soon. here is a bug in the pattern recognition
logic of HHH, which makes it stop the simulation before it has reached
the end of the program.
The claim that differences are ignored, has no evidence. What olcott
ignores is the bug in the 'recognition for infinite recursion' in HHH.
HHH produces false negatives on the decision whether a program halts.
This has been proven with:
int main() {
return HHH(main);
}
where HHH halts but decides it does not halt.
Sysop: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 497 |
Nodes: | 16 (2 / 14) |
Uptime: | 07:04:21 |
Calls: | 9,780 |
Calls today: | 21 |
Files: | 13,748 |
D/L today: |
1 files (1K bytes) |
Messages: | 6,186,854 |