• Re: D simulated by H cannot possibly reach its own simulated final halt

    From olcott@3:633/10 to All on Tue Nov 11 20:41:28 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    On 11/11/2025 8:20 PM, Kaz Kylheku wrote:
    On 2025-11-11, olcott <polcott333@gmail.com> wrote:
    On 11/11/2025 1:17 PM, Kaz Kylheku wrote:
    On 2025-11-11, olcott <polcott333@gmail.com> wrote:
    On 11/10/2025 10:09 PM, Kaz Kylheku wrote:
    On 2025-11-11, olcott <polcott333@gmail.com> wrote:
    On 11/10/2025 9:55 PM, Kaz Kylheku wrote:
    On 2025-11-10, olcott <polcott333@gmail.com> wrote:
    On 11/10/2025 5:09 PM, Kaz Kylheku wrote:
    On 2025-11-10, olcott <polcott333@gmail.com> wrote:
    That is not the behavior that the input to H(D) specifies.

    Insane nonsense.

    The input to H is one single D which specifies one single behavior. >>>>>>>>>
    simulator.exe simulates Test.c. This simulates D that
    calls H(D) that the simulator recognizes as itself.

    "recognizing self" is an undecidable problem.


    simulator.exe is

    ... a figment of your imagination, and has whatever
    properties you need it to have to suit whatever narrative
    you are spinning at the moment.


    On 11/3/2025 10:28 PM, Kaz Kylheku wrote:


    The interpreter API consists of primitives built
    into the system, so it isn't traced.


    The internals of these primitives can be imagined
    without being directly specified.

    In my interpreter walkthrough I more or less specified /what/ the
    interfaces do with the example. It is very clear how the simulation
    object tracks the control flows and steps into statements; it is
    plausible due to these details; no step requires "magical thinking"
    or the solution to incomputable problems.

    You are not specifying anything concrete, neither by a body of
    requirements, nor by concrete example.


    typedef int (*ptr)();
    int HHH(ptr P);

    int DD()
    {
    int Halt_Status = HHH(DD);
    if (Halt_Status)
    HERE: goto HERE;
    return Halt_Status;
    }

    int main()
    {
    HHH(DD);
    }

    I will just go back to my original code
    if you want to play head games.

    It has been shown with actual programming against your code framework
    that abortind deciders leave behind continuable simulations, which may
    terminate.

    Only if you don't resume them at the
    exact same state where you left them
    and that is flat our cheating.

    The parameters required for the next DebugStep of the abandoned
    simulation are correctly determined.

    You need to point out the exact lines of code which have the problem
    that you are alleging, and give details about that problem, otherwise
    you are blabbing about nothing.


    Like you are too stupid to recognize that recursive
    simulation derives the exact same non-halting behavior
    pattern as infinite recursion? I DON'T BUY IT !!!

    Are you really this stupid or just a liar?
    I know that Mike is not this stupid he proved
    his technical competence in far too many ways.

    That he proposed this also seems to prove he is not a liar. https://en.wikipedia.org/wiki/Straw_man#Steelmanning

    A software engineer Not being able to recognize
    behavior exactly the same as infinite recursion
    is the same as a PhD math professor that does
    not know how to do first grade arithmetic.



    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer

    --- PyGate Linux v1.5
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From olcott@3:633/10 to All on Wed Nov 12 09:11:19 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    On 11/12/2025 9:03 AM, joes wrote:
    Am Wed, 12 Nov 2025 07:37:05 -0600 schrieb olcott:
    On 11/12/2025 12:11 AM, Kaz Kylheku wrote:

    On 2025-11-11, olcott <polcott333@gmail.com> wrote:

    Only if you don't resume them at the exact same state where you left >>>>>> them and that is flat our cheating.
    Luckily that?s not what?s going on.

    But, /all the instructions have to be from the same control flow/.
    When DD calls HHH(DD) and HHH simulates DD this control flow is
    isomorphic to HHH invoking DD.
    A caller cannot abort a function.


    typedef int (*ptr)();
    int HHH(ptr P);

    int DD()
    {
    int Halt_Status = HHH(DD);
    if (Halt_Status)
    HERE: goto HERE;
    return Halt_Status;
    }

    int main()
    {
    HHH(DD);
    }

    None-the-less we have the exact same
    repeating pattern such that DD simulated
    or directly invoked by HHH cannot possibly
    reach its own "return" statement final
    halt state.

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer

    --- PyGate Linux v1.5
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From olcott@3:633/10 to All on Wed Nov 12 20:30:22 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    On 11/12/2025 8:16 PM, Kaz Kylheku wrote:
    On 2025-11-12, olcott <polcott333@gmail.com> wrote:

    You aren't doing that, by the way, in the latest Needs_To_Be_Aborted_Trace_HH:

    *This is a FOREVER thing until someone admits the truth*
    *This is a FOREVER thing until someone admits the truth*
    *This is a FOREVER thing until someone admits the truth*

    int D()
    {
    int Halt_Status = H(D);
    if (Halt_Status)
    HERE: goto HERE;
    return Halt_Status;
    }

    Everyone here rejects that the execution trace
    of 5 statements of D simulated by H according to
    the semantics of C is this:

    (1) H simulates D that calls H(D)
    (2) that simulates D that calls H(D)
    (3) that simulates D that calls H(D)
    (4) that simulates D that calls H(D)
    (5) that simulates D that calls H(D)

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer

    --- PyGate Linux v1.5
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From dbush@3:633/10 to All on Wed Nov 12 21:35:33 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    On 11/12/2025 9:30 PM, olcott wrote:
    On 11/12/2025 8:16 PM, Kaz Kylheku wrote:
    On 2025-11-12, olcott <polcott333@gmail.com> wrote:

    You aren't doing that, by the way, in the latest
    Needs_To_Be_Aborted_Trace_HH:

    *This is a FOREVER thing until someone admits the truth*
    *This is a FOREVER thing until someone admits the truth*
    *This is a FOREVER thing until someone admits the truth*

    int D()
    {
    ˙ int Halt_Status = H(D);
    ˙ if (Halt_Status)
    ˙˙˙ HERE: goto HERE;
    ˙ return Halt_Status;
    }

    Everyone here rejects that the execution trace
    of 5 statements of D simulated by H according to
    the semantics of C is this:

    (1)˙˙˙ H simulates D that calls H(D)
    (2) that simulates D that calls H(D)
    (3) that simulates D that calls H(D)
    (4) that simulates D that calls H(D)
    (5) that simulates D that calls H(D)

    That the above make no attempt to explain why the below is wrong
    constitutes your admission that the below is correct.


    if (current->Simplified_Opcode == CALL)
    if (current->Simplified_Opcode == traced->Simplified_Opcode) // CALL >> if (current->Address == traced->Address) // from same address
    if (current->Decode_Target == traced->Decode_Target)// to Same Function
    if (Count_Conditional_Branch_Instructions == 0) // no escape >>
    It's just checking for repeated "CALL HHH".

    The CALL in struction doesn't include the arguments; they have to be
    prepared in registers or pushed onto the stack (or both), depending on
    the calling conventions.

    I imagine you tried doing that but ran into the problem that since
    you are idiotically conflating multiple execution traces,

    The trace for the PUSH instruction which prepares the argument
    for the CALL, in the Level [2] simulation will be separated
    from its CALL by all the instruction traces of the DebugStep
    loop of Level[1]!

    The Level[1] loop, itself being simulated, has to DebugStep a PUSH
    instruction that prepares an argument. Then it has to go all way around
    its loop, during which time execution traces are being looged for it.
    Then it has to DebugStep the CALL instruction.

    If you did not conflate the instruction eents into a single buffer,
    you could easily find the previous PUSH instruction for a given
    CALL, in the private trace buffer of /that/ simulation.

    (It may be that Mike Terry has implemented that; I've not seen his
    code.)


    But, /all the instructions have to be from the same control flow/.


    When DD calls HHH(DD) and HHH simulates DD this
    control flow is isomorphic to HHH invoking DD.

    I'm afraid your knowledge and skills here are limited to being able to
    spell "isomorophic" and use it in a syntactically plausible sentence,
    much like your LLM friends.

    --- PyGate Linux v1.5
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Kaz Kylheku@3:633/10 to All on Thu Nov 13 02:42:29 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    On 2025-11-13, olcott <polcott333@gmail.com> wrote:
    On 11/12/2025 8:25 PM, Kaz Kylheku wrote:

    If those two are in any way whatsoever different, the entire
    castle you built in the sand is washed away.


    *This is a FOREVER thing until someone admits the truth*
    *This is a FOREVER thing until someone admits the truth*
    *This is a FOREVER thing until someone admits the truth*

    int D()
    {
    int Halt_Status = H(D);
    if (Halt_Status)
    HERE: goto HERE;
    return Halt_Status;
    }

    Everyone here rejects that the execution trace
    of 5 statements of D simulated by H according to
    the semantics of C is this:

    (1) H simulates D that calls H(D)
    (2) that simulates D that calls H(D)
    (3) that simulates D that calls H(D)
    (4) that simulates D that calls H(D)
    (5) that simulates D that calls H(D)

    False; I have for months accepted that there is a simulation tower,
    or should be if everything is done right.

    Mike Terry reported cleaning up the code and getting that to happen!

    He's traced it to some six or seven levels down, if I recall.

    Each of the H(D)'s above, however, caries out a //limited//
    simulation of the next level. The H's all partially simulate D
    and then quit.

    All of the D simulations are terminating.

    The only non-terminating aspect is the regeneration of the
    simulation tower.

    But, that's not what H is asked to decide!!! H is not asked to decide
    whether there is an infinite simulation tower. H is asked to decide
    whether D halts.

    All the D instances in the simulation tower are halting.

    An infinite tower of witnesses to your stupidity.

    --
    TXR Programming Language: http://nongnu.org/txr
    Cygnal: Cygwin Native Application Library: http://kylheku.com/cygnal
    Mastodon: @Kazinator@mstdn.ca

    --- PyGate Linux v1.5
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Keith Thompson@3:633/10 to All on Wed Nov 12 19:49:56 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    [...]

    I note that a substantial fraction of the articles recently posted
    to comp.lang.c (and probably comp.lang.c++) are cross-posted to
    comp.theory, and are about the Halting Problem.

    Some of these articles contain small fragments of C-like source code,
    but I suggest that doesn't make them either topical or interesting
    to most participants in the C and C++ newsgroups.

    I humbly suggest, yet again, that these discussions be restricted
    to comp.theory, and that users try to edit the "Newsgroups:" header
    even when replying to a cross-posted article.

    --
    Keith Thompson (The_Other_Keith) Keith.S.Thompson+u@gmail.com
    void Void(void) { Void(); } /* The recursive call of the void */

    --- PyGate Linux v1.5
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From olcott@3:633/10 to All on Wed Nov 12 22:36:12 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    On 11/12/2025 9:49 PM, Keith Thompson wrote:
    [...]

    I note that a substantial fraction of the articles recently posted
    to comp.lang.c (and probably comp.lang.c++) are cross-posted to
    comp.theory, and are about the Halting Problem.

    Some of these articles contain small fragments of C-like source code,
    but I suggest that doesn't make them either topical or interesting
    to most participants in the C and C++ newsgroups.

    I humbly suggest, yet again, that these discussions be restricted
    to comp.theory, and that users try to edit the "Newsgroups:" header
    even when replying to a cross-posted article.


    int D()
    {
    int Halt_Status = H(D);
    if (Halt_Status)
    HERE: goto HERE;
    return Halt_Status;
    }

    I would love to do that after one person confirms
    that D simulated by H according to the semantics
    of the C programming language cannot reach its
    own "return" statement.

    People on all forums have been dodging that or
    lying about that consistently for three years.

    I only came to this forum to get that one question
    answered and until then I will keep repeating it
    several times a day forever. Feel free to keep
    ignoring it now that you know the consequences.

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer

    --- PyGate Linux v1.5
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From David Brown@3:633/10 to All on Thu Nov 13 08:54:56 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    On 13/11/2025 05:36, olcott wrote:
    On 11/12/2025 9:49 PM, Keith Thompson wrote:
    [...]

    I note that a substantial fraction of the articles recently posted
    to comp.lang.c (and probably comp.lang.c++) are cross-posted to
    comp.theory, and are about the Halting Problem.

    Some of these articles contain small fragments of C-like source code,
    but I suggest that doesn't make them either topical or interesting
    to most participants in the C and C++ newsgroups.

    I humbly suggest, yet again, that these discussions be restricted
    to comp.theory, and that users try to edit the "Newsgroups:" header
    even when replying to a cross-posted article.


    int D()
    {
    ˙ int Halt_Status = H(D);
    ˙ if (Halt_Status)
    ˙˙˙ HERE: goto HERE;
    ˙ return Halt_Status;
    }

    I would love to do that after one person confirms
    that D simulated by H according to the semantics
    of the C programming language cannot reach its
    own "return" statement.

    People on all forums have been dodging that or
    lying about that consistently for three years.

    I only came to this forum to get that one question
    answered and until then I will keep repeating it
    several times a day forever. Feel free to keep
    ignoring it now that you know the consequences.


    Given that you've been doing this for so many years, and got the same
    results every time - everyone disagrees with your fundamental concepts -
    what makes you think you can change people's minds by repeating the same questions and claims?

    If you are wrong, and everyone else is right, then you are wasting your
    time and everyone else's time.

    If you are right and everyone else is wrong, then your posts are /still/ wasting your time and everyone else's time.

    If you are sure you are correct, you have to find a different way to
    prove it. How about you stop repeating yourself on Usenet groups
    (especially c.l.c and c.l.c++, but also comp.theory and other groups),
    and do something /useful/ with your breakthrough? You suggested your
    solution to the halting problem could lead to a universal truth
    identifier that would save the world. Surely that is more worthy of
    your time than beating your head against this wall? Give up on the
    ignorant masses here, and work with the LLM's that believe in you to
    create your truth identifier. When we hear on international news how it
    is changing the world, we'll get back to you and apologise for our lack
    of faith.





    --- PyGate Linux v1.5
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Chris M. Thomasson@3:633/10 to All on Thu Nov 13 00:21:07 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    On 11/12/2025 11:54 PM, David Brown wrote:
    On 13/11/2025 05:36, olcott wrote:
    On 11/12/2025 9:49 PM, Keith Thompson wrote:
    [...]

    I note that a substantial fraction of the articles recently posted
    to comp.lang.c (and probably comp.lang.c++) are cross-posted to
    comp.theory, and are about the Halting Problem.

    Some of these articles contain small fragments of C-like source code,
    but I suggest that doesn't make them either topical or interesting
    to most participants in the C and C++ newsgroups.

    I humbly suggest, yet again, that these discussions be restricted
    to comp.theory, and that users try to edit the "Newsgroups:" header
    even when replying to a cross-posted article.


    int D()
    {
    ˙˙ int Halt_Status = H(D);
    ˙˙ if (Halt_Status)
    ˙˙˙˙ HERE: goto HERE;
    ˙˙ return Halt_Status;
    }

    I would love to do that after one person confirms
    that D simulated by H according to the semantics
    of the C programming language cannot reach its
    own "return" statement.

    People on all forums have been dodging that or
    lying about that consistently for three years.

    I only came to this forum to get that one question
    answered and until then I will keep repeating it
    several times a day forever. Feel free to keep
    ignoring it now that you know the consequences.


    Given that you've been doing this for so many years, and got the same results every time - everyone disagrees with your fundamental concepts - what makes you think you can change people's minds by repeating the same questions and claims?

    If you are wrong, and everyone else is right, then you are wasting your
    time and everyone else's time.

    If you are right and everyone else is wrong, then your posts are /still/ wasting your time and everyone else's time.

    If you are sure you are correct, you have to find a different way to
    prove it.˙ How about you stop repeating yourself on Usenet groups (especially c.l.c and c.l.c++, but also comp.theory and other groups),
    and do something /useful/ with your breakthrough?˙ You suggested your solution to the halting problem could lead to a universal truth
    identifier that would save the world.˙ Surely that is more worthy of
    your time than beating your head against this wall?˙ Give up on the
    ignorant masses here, and work with the LLM's that believe in you to
    create your truth identifier.˙ When we hear on international news how it
    is changing the world, we'll get back to you and apologise for our lack
    of faith.





    AMEN!!!!!!!!!!

    --- PyGate Linux v1.5
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From olcott@3:633/10 to All on Thu Nov 13 09:22:27 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    On 11/13/2025 1:54 AM, David Brown wrote:
    On 13/11/2025 05:36, olcott wrote:
    On 11/12/2025 9:49 PM, Keith Thompson wrote:
    [...]

    I note that a substantial fraction of the articles recently posted
    to comp.lang.c (and probably comp.lang.c++) are cross-posted to
    comp.theory, and are about the Halting Problem.

    Some of these articles contain small fragments of C-like source code,
    but I suggest that doesn't make them either topical or interesting
    to most participants in the C and C++ newsgroups.

    I humbly suggest, yet again, that these discussions be restricted
    to comp.theory, and that users try to edit the "Newsgroups:" header
    even when replying to a cross-posted article.


    int D()
    {
    ˙˙ int Halt_Status = H(D);
    ˙˙ if (Halt_Status)
    ˙˙˙˙ HERE: goto HERE;
    ˙˙ return Halt_Status;
    }

    I would love to do that after one person confirms
    that D simulated by H according to the semantics
    of the C programming language cannot reach its
    own "return" statement.

    People on all forums have been dodging that or
    lying about that consistently for three years.

    I only came to this forum to get that one question
    answered and until then I will keep repeating it
    several times a day forever. Feel free to keep
    ignoring it now that you know the consequences.


    Given that you've been doing this for so many years, and got the same results every time - everyone disagrees with your fundamental concepts - what makes you think you can change people's minds by repeating the same questions and claims?

    If you are wrong, and everyone else is right, then you are wasting your
    time and everyone else's time.

    If you are right and everyone else is wrong, then your posts are /still/ wasting your time and everyone else's time.


    typedef int (*ptr)();
    int HHH(ptr P);

    int DD()
    {
    int Halt_Status = HHH(DD);
    if (Halt_Status)
    HERE: goto HERE;
    return Halt_Status;
    }

    int main()
    {
    HHH(DD);
    }

    This code has been fully operational
    for three years so I know what it does.

    That no one else has been able to confirm
    that DD simulated by HHH cannot possibly
    reach its own "return" instruction has been
    the issue that everyone has ignored or lied
    about for three years.

    This is the first step of my important proof.
    This first step is entirely appropriate for
    the C/C++ groups. After this first step is
    accepted I will move this discussion back to
    comp.theory.

    The people on comp.theory have been stonewalling
    me on this for three years. Even the most competent
    people have taken to flat out lying.

    If you are sure you are correct, you have to find a different way to
    prove it.˙ How about you stop repeating yourself on Usenet groups (especially c.l.c and c.l.c++, but also comp.theory and other groups),
    and do something /useful/ with your breakthrough?˙ You suggested your solution to the halting problem could lead to a universal truth
    identifier that would save the world.˙ Surely that is more worthy of
    your time than beating your head against this wall?˙ Give up on the
    ignorant masses here, and work with the LLM's that believe in you to
    create your truth identifier.˙ When we hear on international news how it
    is changing the world, we'll get back to you and apologise for our lack
    of faith.






    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer

    --- PyGate Linux v1.5
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From olcott@3:633/10 to All on Thu Nov 13 14:22:01 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    On 11/13/2025 1:38 PM, Kaz Kylheku wrote:
    On 2025-11-13, olcott <polcott333@gmail.com> wrote:
    H computes the mapping from its input to the behavior
    that this actual input actually specifies as measured
    by N statements of D simulated by H according to the
    semantics of the C language until N statements of D
    match the their non-halting behavior pattern:

    If the computation D is known to terminate in N + 5 steps,
    then that measure is simply not long enough.


    No that it just you totally screwing up again forgetting
    that an aborted simulation does not count as terminating.

    *On top of that you dishonestly erased the non-termination criteria*
    D calls H(D) twice in sequence with the same argument
    and there are no intervening conditional branch
    instructions between the invocation of D and its
    call to H(D).

    You're emeasuring a 15' room with a 12' measuring tape,
    declaring the room to be infinite.

    D calls H(D) twice in sequence with the same argument

    Really? Let's look at the code:

    int D()
    {
    int Halt_Status = H(D);
    if (Halt_Status)
    HERE: goto HERE;
    return Halt_Status;
    }

    No competent programmer would look at that and say that D
    calls H twice.


    Unless they don't have so much brain damage that
    they can pay attention to what is asked for is:

    *D simulated by H and not D invoked from main*
    *D simulated by H and not D invoked from main*
    *D simulated by H and not D invoked from main*
    *D simulated by H and not D invoked from main*
    *D simulated by H and not D invoked from main*

    *D simulated by H and not D invoked from main*
    *D simulated by H and not D invoked from main*
    *D simulated by H and not D invoked from main*
    *D simulated by H and not D invoked from main*
    *D simulated by H and not D invoked from main*

    *D simulated by H and not D invoked from main*
    *D simulated by H and not D invoked from main*
    *D simulated by H and not D invoked from main*
    *D simulated by H and not D invoked from main*
    *D simulated by H and not D invoked from main*

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer

    --- PyGate Linux v1.5
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From olcott@3:633/10 to All on Tue Nov 18 21:07:35 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    On 11/18/2025 8:53 PM, Kaz Kylheku wrote:
    On 2025-11-19, olcott <polcott333@gmail.com> wrote:
    On 11/18/2025 7:01 PM, Kaz Kylheku wrote:
    On 2025-11-18, olcott <polcott333@gmail.com> wrote:
    On 11/18/2025 3:21 PM, Kaz Kylheku wrote:
    On 2025-11-18, olcott <polcott333@gmail.com> wrote:
    If you ask a decider to determine if my
    sister's name is "Sally" and I don't tell
    it who I am then the information contained
    in the input is insufficient. This does not
    in any way limit computation itself.

    The problem is that UTM(D) can work out the fact that
    D halts. Why is it that UTM knows that D's sister's
    name is Sally, but H does not?


    UTM(D) is answering a different question.
    (a) It is not providing any answer at all.

    Well, of course, by "UTM" we mean a /decider/ that purely simulates:

    bool UTM(ptr P) {
    sim S = sim_create(P);
    sim_step_exhaustively(S);
    return true;
    }

    All deciders applied to D are tasked with answering exactly the same
    question.

    Pretending that a different question was asked is nonproductive;
    the answer will be interpreted to the original question.

    All the information needed to answer is positively contained in D.

    It is just too complex relative to H.


    What The F does UTM decide when DD calls UTM(DD)?

    That doesn't happen; DD calls HHH(DD).

    A diagonal functon set against UTM, call it DDUTM,
    cannot be decided by UTM(DDUTM).

    That call simply does not return.


    Yes, and the other one does return proving the
    whole point that I have been making for three
    years that everyone (besides Ben) was too damned
    dishonest to acknowledge has been true all along.

    --
    Copyright 2025 Olcott

    My 28 year goal has been to make
    "true on the basis of meaning" computable.

    --- PyGate Linux v1.5
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Kaz Kylheku@3:633/10 to All on Wed Nov 19 04:30:52 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    On 2025-11-19, olcott <polcott333@gmail.com> wrote:
    On 11/18/2025 8:53 PM, Kaz Kylheku wrote:
    On 2025-11-19, olcott <polcott333@gmail.com> wrote:
    On 11/18/2025 7:01 PM, Kaz Kylheku wrote:
    On 2025-11-18, olcott <polcott333@gmail.com> wrote:
    On 11/18/2025 3:21 PM, Kaz Kylheku wrote:
    On 2025-11-18, olcott <polcott333@gmail.com> wrote:
    If you ask a decider to determine if my
    sister's name is "Sally" and I don't tell
    it who I am then the information contained
    in the input is insufficient. This does not
    in any way limit computation itself.

    The problem is that UTM(D) can work out the fact that
    D halts. Why is it that UTM knows that D's sister's
    name is Sally, but H does not?


    UTM(D) is answering a different question.
    (a) It is not providing any answer at all.

    Well, of course, by "UTM" we mean a /decider/ that purely simulates:

    bool UTM(ptr P) {
    sim S = sim_create(P);
    sim_step_exhaustively(S);
    return true;
    }

    All deciders applied to D are tasked with answering exactly the same
    question.

    Pretending that a different question was asked is nonproductive;
    the answer will be interpreted to the original question.

    All the information needed to answer is positively contained in D.

    It is just too complex relative to H.


    What The F does UTM decide when DD calls UTM(DD)?

    That doesn't happen; DD calls HHH(DD).

    A diagonal functon set against UTM, call it DDUTM,
    cannot be decided by UTM(DDUTM).

    That call simply does not return.


    Yes, and the other one does return proving the
    whole point that I have been making for three
    years that everyone (besides Ben) was too damned
    dishonest to acknowledge has been true all along.

    What "other one"? Is that referring to HHH(DD)?

    HHH(DD) returns; UTM(DDUTM) does not return.

    That's four functions; HHH isn't UTM; DD isn't DDUTM.

    HHH and DDUTM are unrelated; UTM and DD are unrelated.

    --
    TXR Programming Language: http://nongnu.org/txr
    Cygnal: Cygwin Native Application Library: http://kylheku.com/cygnal
    Mastodon: @Kazinator@mstdn.ca

    --- PyGate Linux v1.5
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Bonita Montero@3:633/10 to All on Tue Nov 25 16:20:32 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    Am 06.11.2025 um 21:48 schrieb olcott:
    D simulated by H cannot possibly reach its own
    simulated final halt state.

    I am not going to talk about any non-nonsense of
    resuming a simulation after we already have this
    final answer.

    We just proved that the input to H(D) specifies
    non-halting. Anything beyond this is flogging a
    dead horse.


    news://news.eternal-september.org/20251104183329.967@kylheku.com

    On 11/4/2025 8:43 PM, Kaz Kylheku wrote:
    On 2025-11-05, olcott <polcott333@gmail.com> wrote:

    The whole point is that D simulated by H
    cannot possbly reach its own simulated
    "return" statement no matter what H does.

    Yes; this doesn't happen while H is running.

    So while H does /something/, no matter what H does,
    that D simulation won't reach the return statement.


    What you do is like thinking in circles before falling asleep.
    It never ends. You're gonna die with that for sure sooner or later.


    --- PyGate Linux v1.5.1
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From olcott@3:633/10 to All on Tue Nov 25 09:47:35 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    On 11/25/2025 9:20 AM, Bonita Montero wrote:
    Am 06.11.2025 um 21:48 schrieb olcott:
    D simulated by H cannot possibly reach its own
    simulated final halt state.

    I am not going to talk about any non-nonsense of
    resuming a simulation after we already have this
    final answer.

    We just proved that the input to H(D) specifies
    non-halting. Anything beyond this is flogging a
    dead horse.


    news://news.eternal-september.org/20251104183329.967@kylheku.com

    On 11/4/2025 8:43 PM, Kaz Kylheku wrote:
    On 2025-11-05, olcott <polcott333@gmail.com> wrote:

    The whole point is that D simulated by H
    cannot possbly reach its own simulated
    "return" statement no matter what H does.

    Yes; this doesn't happen while H is running.

    So while H does /something/, no matter what H does,
    that D simulation won't reach the return statement.


    What you do is like thinking in circles before falling asleep.
    It never ends. You're gonna die with that for sure sooner or later.


    I now have four different LLM AI models that prove
    that I am correct on the basis that they derive the
    proof steps that prove that I am correct.

    Even Kimi that was dead set against me now fully
    understands my new formal foundation for correct
    reasoning.

    --
    Copyright 2025 Olcott

    My 28 year goal has been to make
    "true on the basis of meaning" computable.

    --- PyGate Linux v1.5.1
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Bonita Montero@3:633/10 to All on Tue Nov 25 16:50:45 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    Am 25.11.2025 um 16:47 schrieb olcott:
    On 11/25/2025 9:20 AM, Bonita Montero wrote:
    What you do is like thinking in circles before falling asleep.
    It never ends. You're gonna die with that for sure sooner or later.


    I now have four different LLM AI models that prove
    that I am correct on the basis that they derive the
    proof steps that prove that I am correct.
    It don't matters if you're correct. There's no benefit in discussing
    such a theoretical topic for years. You won't even stop if everyone
    tells you're right.

    Even Kimi that was dead set against me now fully
    understands my new formal foundation for correct
    reasoning.



    --- PyGate Linux v1.5.1
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From olcott@3:633/10 to All on Tue Nov 25 10:09:50 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    On 11/25/2025 9:50 AM, Bonita Montero wrote:
    Am 25.11.2025 um 16:47 schrieb olcott:
    On 11/25/2025 9:20 AM, Bonita Montero wrote:
    What you do is like thinking in circles before falling asleep.
    It never ends. You're gonna die with that for sure sooner or later.


    I now have four different LLM AI models that prove
    that I am correct on the basis that they derive the
    proof steps that prove that I am correct.

    It don't matters if you're correct. There's no benefit in discussing
    such a theoretical topic for years. You won't even stop if everyone
    tells you're right.

    My whole purpose of this has been to establish a
    new foundation for correct reasoning that gets rid
    of G”del Incompleteness and Tarski Undefinability
    such that Boolean True(Language L Expression E) is
    consistent and correct for the whole body of
    knowledge that can be expressed in language.

    The timing for such a system is perfect because it
    could solve the LLM AI reliability issues. Once
    it does that I will no longer need to talk about
    it on conventional forums. At that point all of
    my talks will be formal presentations at symposiums.


    Even Kimi that was dead set against me now fully
    understands my new formal foundation for correct
    reasoning.




    --
    Copyright 2025 Olcott

    My 28 year goal has been to make
    "true on the basis of meaning" computable.

    --- PyGate Linux v1.5.1
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Richard Damon@3:633/10 to All on Tue Nov 25 11:37:27 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    On 11/25/25 10:47 AM, olcott wrote:
    On 11/25/2025 9:20 AM, Bonita Montero wrote:
    Am 06.11.2025 um 21:48 schrieb olcott:
    D simulated by H cannot possibly reach its own
    simulated final halt state.

    I am not going to talk about any non-nonsense of
    resuming a simulation after we already have this
    final answer.

    We just proved that the input to H(D) specifies
    non-halting. Anything beyond this is flogging a
    dead horse.


    news://news.eternal-september.org/20251104183329.967@kylheku.com

    On 11/4/2025 8:43 PM, Kaz Kylheku wrote:
    On 2025-11-05, olcott <polcott333@gmail.com> wrote:

    The whole point is that D simulated by H
    cannot possbly reach its own simulated
    "return" statement no matter what H does.

    Yes; this doesn't happen while H is running.

    So while H does /something/, no matter what H does,
    that D simulation won't reach the return statement.


    What you do is like thinking in circles before falling asleep.
    It never ends. You're gonna die with that for sure sooner or later.


    I now have four different LLM AI models that prove
    that I am correct on the basis that they derive the
    proof steps that prove that I am correct.

    Even Kimi that was dead set against me now fully
    understands my new formal foundation for correct
    reasoning.


    But they only "agree" with your arguement, because you LIE in that
    arguement that H CAN correctly determine the answer.

    Sorry, arguements based on LIES are just unsound, as you are proving
    that you are so fundamentally.

    All you are doing is proving that you are just an incredably stupid pathological liar that has no concept of what truth or logic actually is.

    That is why you believe your own lies, and reject the fact that people
    point out to you, as they don't match the lie of your definition of "truth".



    --- PyGate Linux v1.5.1
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Kaz Kylheku@3:633/10 to All on Tue Nov 25 17:33:58 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    On 2025-11-25, olcott <polcott333@gmail.com> wrote:
    On 11/25/2025 9:50 AM, Bonita Montero wrote:
    Am 25.11.2025 um 16:47 schrieb olcott:
    On 11/25/2025 9:20 AM, Bonita Montero wrote:
    What you do is like thinking in circles before falling asleep.
    It never ends. You're gonna die with that for sure sooner or later.


    I now have four different LLM AI models that prove
    that I am correct on the basis that they derive the
    proof steps that prove that I am correct.

    It don't matters if you're correct. There's no benefit in discussing
    such a theoretical topic for years. You won't even stop if everyone
    tells you're right.

    My whole purpose of this has been to establish a
    new foundation for correct reasoning that gets rid

    Unfortunately, your reasoning was proven wrong before
    you were born, and your computer program does
    not show what you say it does.

    The timing for such a system is perfect because it
    could solve the LLM AI reliability issues.

    You have no idea how LLMs work and what is at the root of the LLM
    reliability issues, and how to even take the first step in fixing it.

    You have zero qualifications for doing anything like that, and no chance
    of developing the qualifications; that window is long gone.


    --
    TXR Programming Language: http://nongnu.org/txr
    Cygnal: Cygwin Native Application Library: http://kylheku.com/cygnal
    Mastodon: @Kazinator@mstdn.ca

    --- PyGate Linux v1.5.1
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From olcott@3:633/10 to All on Tue Nov 25 11:39:45 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    On 11/25/2025 11:29 AM, Kaz Kylheku wrote:
    On 2025-11-06, olcott <polcott333@gmail.com> wrote:
    D simulated by H cannot possibly reach its own
    simulated final halt state.

    It has been shown /wth code/ that D simulated by H reaches its return, possible even in your horribly incorrect program that fails to conform
    to the requirements for exploring the halting problem.


    news://news.eternal-september.org/20251104183329.967@kylheku.com
    On 11/4/2025 8:43 PM, Kaz Kylheku wrote:
    On 2025-11-05, olcott <polcott333@gmail.com> wrote:

    The whole point is that D simulated by H
    cannot possbly reach its own simulated
    "return" statement no matter what H does.

    Yes; this doesn't happen while H is running.

    So while H does /something/, no matter what H does,
    that D simulation won't reach the return statement.


    Until five people from comp.lang.c call you out
    on this they will remain in the loop

    --
    Copyright 2025 Olcott

    My 28 year goal has been to make
    "true on the basis of meaning" computable.

    --- PyGate Linux v1.5.1
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From olcott@3:633/10 to All on Tue Nov 25 13:18:14 2025
    Subject: Re: D simulated by H cannot possibly reach its own simulated final halt state

    On 11/25/2025 12:46 PM, Kaz Kylheku wrote:
    On 2025-11-25, olcott <polcott333@gmail.com> wrote:
    On 11/25/2025 11:42 AM, Kaz Kylheku wrote:
    On 2025-11-06, olcott <polcott333@gmail.com> wrote:
    D simulated by H cannot possibly reach its own
    simulated final halt state.

    It has been shown /wth code/ that D simulated by H reaches its return,

    Liar, Liar Pants on Fire !!!

    I made the code public; another person was able to build and get the
    same results.


    news://news.eternal-september.org/20251104183329.967@kylheku.com
    On 11/4/2025 8:43 PM, Kaz Kylheku wrote:
    On 2025-11-05, olcott <polcott333@gmail.com> wrote:

    The whole point is that D simulated by H
    cannot possbly reach its own simulated
    "return" statement no matter what H does.

    Yes; this doesn't happen while H is running.

    So while H does /something/, no matter what H does,
    that D simulation won't reach the return statement.



    news://news.eternal-september.org/20251104183329.967@kylheku.com
    On 11/4/2025 8:43 PM, Kaz Kylheku wrote:
    On 2025-11-05, olcott <polcott333@gmail.com> wrote:

    The whole point is that D simulated by H
    cannot possbly reach its own simulated
    "return" statement no matter what H does.

    Yes; this doesn't happen while H is running.

    So while H does /something/, no matter what H does,
    that D simulation won't reach the return statement.



    news://news.eternal-september.org/20251104183329.967@kylheku.com
    On 11/4/2025 8:43 PM, Kaz Kylheku wrote:
    On 2025-11-05, olcott <polcott333@gmail.com> wrote:

    The whole point is that D simulated by H
    cannot possbly reach its own simulated
    "return" statement no matter what H does.

    Yes; this doesn't happen while H is running.

    So while H does /something/, no matter what H does,
    that D simulation won't reach the return statement.



    news://news.eternal-september.org/20251104183329.967@kylheku.com
    On 11/4/2025 8:43 PM, Kaz Kylheku wrote:
    On 2025-11-05, olcott <polcott333@gmail.com> wrote:

    The whole point is that D simulated by H
    cannot possbly reach its own simulated
    "return" statement no matter what H does.

    Yes; this doesn't happen while H is running.

    So while H does /something/, no matter what H does,
    that D simulation won't reach the return statement.



    news://news.eternal-september.org/20251104183329.967@kylheku.com
    On 11/4/2025 8:43 PM, Kaz Kylheku wrote:
    On 2025-11-05, olcott <polcott333@gmail.com> wrote:

    The whole point is that D simulated by H
    cannot possbly reach its own simulated
    "return" statement no matter what H does.

    Yes; this doesn't happen while H is running.

    So while H does /something/, no matter what H does,
    that D simulation won't reach the return statement.



    --
    Copyright 2025 Olcott

    My 28 year goal has been to make
    "true on the basis of meaning" computable.

    --- PyGate Linux v1.5.1
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)