• How is 'halt' defined?

    From wij@wyniijj5@gmail.com to comp.theory on Sun Sep 7 19:08:47 2025
    From Newsgroup: comp.theory

    Particularly in POO Halt decider where C is used to describe TM.
    E.g. Terminating TM can only hit one 'ret' (in C), which one in HHH or DD counts
    as halt, or others?
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Richard Damon@Richard@Damon-Family.org to comp.theory on Sun Sep 7 08:00:48 2025
    From Newsgroup: comp.theory

    On 9/7/25 7:08 AM, wij wrote:
    Particularly in POO Halt decider where C is used to describe TM.

    E.g. Terminating TM can only hit one 'ret' (in C), which one in HHH or DD counts
    as halt, or others?


    "Halting" in the case of C functions, is if the C function being talk
    about eventually returns to what would have been its caller when it is
    put into a context that called it.

    The key point isn't so much "which return", but who is returning.

    Note, the question is about the execution of the function, which can
    also be answered by a correct and complete simulation. The fact that a
    partial simulation didn't yet reach a return doesn't say anything about halting or not halting.

    The other key is that when you talk about "a function", the scope isn't
    just the one C function body, but if that body calls to other functions,
    those are included as part of the "function" that needs to be analysed,
    as the question is only meaningful as a yes/no question if the
    "function" being looked at is pure and complete, which means it includes
    ALL the code it uses. A function body with an external reference within
    it may have an answer dependent on what that referent does.

    Thus, for POs "DD" as specified which excludes from its representaton
    the code of HHH, the answer is NOT a simple yes or no, but is an
    expression like DD will halt if HHH(DD) returns 0, and not halt if
    HHH(DD) returns non-zero. But of course, a simple decide can't give that
    sort of answer, so it isn't a valid question for a simple decider, and
    thus his whole argument is just a category error.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From wij@wyniijj5@gmail.com to comp.theory on Sun Sep 7 21:20:11 2025
    From Newsgroup: comp.theory

    On Sun, 2025-09-07 at 08:00 -0400, Richard Damon wrote:
    On 9/7/25 7:08 AM, wij wrote:
    Particularly in POO Halt decider where C is used to describe TM.

    E.g. Terminating TM can only hit one 'ret' (in C), which one in HHH or DD counts
    as halt, or others?


    "Halting" in the case of C functions, is if the C function being talk
    about eventually returns to what would have been its caller when it is
    put into a context that called it.
    'halt' needs to be precisely defined, otherwise the discussion of POOH is pointless.
    The key point isn't so much "which return", but who is returning.
    I think you mean:
    int main() {
    int rv= HHH(DD);
    } // execution hitting here means 'halt', the value of rv denotes accept or
    // reject
    Note, the question is about the execution of the function, which can
    also be answered by a correct and complete simulation. The fact that a partial simulation didn't yet reach a return doesn't say anything about halting or not halting.

    The other key is that when you talk about "a function", the scope isn't
    just the one C function body, but if that body calls to other functions, those are included as part of the "function" that needs to be analysed,
    as the question is only meaningful as a yes/no question if the
    "function" being looked at is pure and complete, which means it includes
    ALL the code it uses. A function body with an external reference within
    it may have an answer dependent on what that referent does.

    Thus, for POs "DD" as specified which excludes from its representaton
    the code of HHH, the answer is NOT a simple yes or no, but is an
    expression like DD will halt if HHH(DD) returns 0, and not halt if
    HHH(DD) returns non-zero. But of course, a simple decide can't give that sort of answer, so it isn't a valid question for a simple decider, and
    thus his whole argument is just a category error.
    You only make things complicated.
    DD() is an independent TM. HHH(DD) in the main() is another independent TM. There is only one main().
    I.e. the DD in HHH(DD) cannot halt, it can only be 'analyzed'.
    By the way, there is also no such things as 'abort'.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to comp.theory on Sun Sep 7 09:37:14 2025
    From Newsgroup: comp.theory

    On 9/7/2025 8:20 AM, wij wrote:
    On Sun, 2025-09-07 at 08:00 -0400, Richard Damon wrote:
    On 9/7/25 7:08 AM, wij wrote:
    Particularly in POO Halt decider where C is used to describe TM.

    E.g. Terminating TM can only hit one 'ret' (in C), which one in HHH or DD counts
    as halt, or others?


    "Halting" in the case of C functions, is if the C function being talk
    about eventually returns to what would have been its caller when it is
    put into a context that called it.

    'halt' needs to be precisely defined, otherwise the discussion of POOH is pointless.


    Can DD emulated by any HHH according to the semantics
    of the x86 language possibly reach its own emulated
    "ret" instruction final halt state?

    Abort means that HHH stops emulating DD.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From wij@wyniijj5@gmail.com to comp.theory on Sun Sep 7 22:53:04 2025
    From Newsgroup: comp.theory

    On Sun, 2025-09-07 at 09:37 -0500, olcott wrote:
    On 9/7/2025 8:20 AM, wij wrote:
    On Sun, 2025-09-07 at 08:00 -0400, Richard Damon wrote:
    On 9/7/25 7:08 AM, wij wrote:
    Particularly in POO Halt decider where C is used to describe TM.

    E.g. Terminating TM can only hit one 'ret' (in C), which one in HHH or DD counts
    as halt, or others?


    "Halting" in the case of C functions, is if the C function being talk about eventually returns to what would have been its caller when it is put into a context that called it.

    'halt' needs to be precisely defined, otherwise the discussion of POOH is pointless.


    Can DD emulated by any HHH according to the semantics
    of the x86 language possibly reach its own emulated
    "ret" instruction final halt state?

    Abort means that HHH stops emulating DD.
    What you say bear no meaning. Unless you can answer the question:
    What is the value of proposition X&~X? why? True or False (or Undecidable if none fits)?
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Richard Damon@Richard@Damon-Family.org to comp.theory on Sun Sep 7 12:44:26 2025
    From Newsgroup: comp.theory

    On 9/7/25 10:37 AM, olcott wrote:
    On 9/7/2025 8:20 AM, wij wrote:
    On Sun, 2025-09-07 at 08:00 -0400, Richard Damon wrote:
    On 9/7/25 7:08 AM, wij wrote:
    Particularly in POO Halt decider where C is used to describe TM.

    E.g. Terminating TM can only hit one 'ret' (in C), which one in HHH
    or DD counts
    as halt, or others?


    "Halting" in the case of C functions, is if the C function being talk
    about eventually returns to what would have been its caller when it is
    put into a context that called it.

    'halt' needs to be precisely defined, otherwise the discussion of POOH
    is pointless.


    Can DD emulated by any HHH according to the semantics
    of the x86 language possibly reach its own emulated
    "ret" instruction final halt state?

    Abort means that HHH stops emulating DD.




    And where is that definition coming from?

    After all, that is an INHERENTLY SUBJECTIVE definition, for what is
    supposed to be an OBJECTIVE problem, when you make DD change depending
    on which HHH you give it to, and thus it becomes a category error.

    After qll, if HHH is a computation, either it does or it doesn't
    correctly simulate the input, and will either answer Halting,
    Non-Halting, or Fails to answer.

    Since its answer is fixed, we can't talk about it giving a different answer.


    When we make DD a fixed program, built on a single defined HHH, then
    THAT HHH will fail to give the correct answer, and it it answer with a non-halting, then many other HHHs can correctly simulate the input.

    Your conclusion can only happen when you make the category error of
    trying to build an input that is subjective and depends on who you ask.

    Sorry, you are just proving your stupidity.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Chris M. Thomasson@chris.m.thomasson.1@gmail.com to comp.theory on Sun Sep 7 14:19:09 2025
    From Newsgroup: comp.theory

    On 9/7/2025 7:53 AM, wij wrote:
    On Sun, 2025-09-07 at 09:37 -0500, olcott wrote:
    On 9/7/2025 8:20 AM, wij wrote:
    On Sun, 2025-09-07 at 08:00 -0400, Richard Damon wrote:
    On 9/7/25 7:08 AM, wij wrote:
    Particularly in POO Halt decider where C is used to describe TM.

    E.g. Terminating TM can only hit one 'ret' (in C), which one in HHH or DD counts
    as halt, or others?


    "Halting" in the case of C functions, is if the C function being talk
    about eventually returns to what would have been its caller when it is >>>> put into a context that called it.

    'halt' needs to be precisely defined, otherwise the discussion of POOH is pointless.


    Can DD emulated by any HHH according to the semantics
    of the x86 language possibly reach its own emulated
    "ret" instruction final halt state?

    Abort means that HHH stops emulating DD.

    What you say bear no meaning. Unless you can answer the question:

    What is the value of proposition X&~X? why? True or False (or Undecidable if none fits)?



    How long is a piece of string?
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to comp.theory on Mon Sep 8 11:20:09 2025
    From Newsgroup: comp.theory

    On 2025-09-07 11:08:47 +0000, wij said:

    Particularly in POO Halt decider where C is used to describe TM.

    E.g. Terminating TM can only hit one 'ret' (in C), which one in HHH or
    DD counts
    as halt, or others?

    About Turing machines it means a configuration for which the rules
    don't specfy any action. About other automata the same or similar
    rule can be used.

    For typical computer machine language a rasonable definition is that
    the program has halted when the instrucion pointer points to a memory
    location that is not a part of the program asked about or a halt
    instruction is executed. A similar definition can be used for C and
    other typical programming langages.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Richard Heathfield@rjh@cpax.org.uk to comp.theory on Mon Sep 8 11:56:35 2025
    From Newsgroup: comp.theory

    On 07/09/2025 17:44, Richard Damon wrote:
    On 9/7/25 10:37 AM, olcott wrote:

    <snip>

    Can DD emulated by any HHH according to the semantics
    of the x86 language possibly reach its own emulated
    "ret" instruction final halt state?

    Abort means that HHH stops emulating DD.


    And where is that definition coming from?

    Olcott makes the rules up as he goes along. I sometimes think he
    sees a "decider" as a program with responsibility for dictating
    whether a program halts, rather than simply for determining
    whether...and /having/ decided, its decision is final, and
    reality can go swing.
    --
    Richard Heathfield
    Email: rjh at cpax dot org dot uk
    "Usenet is a strange place" - dmr 29 July 1999
    Sig line 4 vacant - apply within
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From wij@wyniijj5@gmail.com to comp.theory on Mon Sep 8 18:57:57 2025
    From Newsgroup: comp.theory

    On Mon, 2025-09-08 at 11:20 +0300, Mikko wrote:
    On 2025-09-07 11:08:47 +0000, wij said:

    Particularly in POO Halt decider where C is used to describe TM.

    E.g. Terminating TM can only hit one 'ret' (in C), which one in HHH or
    DD counts
    as halt, or others?

    About Turing machines it means a configuration for which the rules
    don't specfy any action. About other automata the same or similar
    rule can be used.

    For typical computer machine language a rasonable definition is that
    the program has halted when the instrucion pointer points to a memory location that is not a part of the program asked about or a halt
    instruction is executed. A similar definition can be used for C and
    other typical programming langages.
    It seems your 'halt' means TM reads a symbol that has no corresponding action. I thought 'halt' means TM enters one of its final states, e.g. accept/reject state.
    I don't konw how TM is defined in the 'undefined' condition.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Chris M. Thomasson@chris.m.thomasson.1@gmail.com to comp.theory on Mon Sep 8 11:55:50 2025
    From Newsgroup: comp.theory

    On 9/8/2025 3:57 AM, wij wrote:
    On Mon, 2025-09-08 at 11:20 +0300, Mikko wrote:
    On 2025-09-07 11:08:47 +0000, wij said:

    Particularly in POO Halt decider where C is used to describe TM.

    E.g. Terminating TM can only hit one 'ret' (in C), which one in HHH or
    DD counts
    as halt, or others?

    About Turing machines it means a configuration for which the rules
    don't specfy any action. About other automata the same or similar
    rule can be used.

    For typical computer machine language a rasonable definition is that
    the program has halted when the instrucion pointer points to a memory
    location that is not a part of the program asked about or a halt
    instruction is executed. A similar definition can be used for C and
    other typical programming langages.

    It seems your 'halt' means TM reads a symbol that has no corresponding action.
    I thought 'halt' means TM enters one of its final states, e.g. accept/reject state.
    I don't konw how TM is defined in the 'undefined' condition.


    Afaict, undefined means we can define it as an extension? ;^)
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to comp.theory on Mon Sep 8 18:27:16 2025
    From Newsgroup: comp.theory

    On 9/8/2025 3:20 AM, Mikko wrote:
    On 2025-09-07 11:08:47 +0000, wij said:

    Particularly in POO Halt decider where C is used to describe TM.

    E.g. Terminating TM can only hit one 'ret' (in C), which one in HHH or
    DD counts
    as halt, or others?

    About Turing machines it means a configuration for which the rules
    don't specfy any action. About other automata the same or similar
    rule can be used.


    There is no transition out of any final halt state.

    For typical computer machine language a rasonable definition is that
    the program has halted when the instrucion pointer points to a memory location that is not a part of the program asked about or a halt
    instruction is executed. A similar definition can be used for C and
    other typical programming langages.


    For C functions its simplest to think of their "return"
    statement as their final state.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to comp.theory on Mon Sep 8 19:59:05 2025
    From Newsgroup: comp.theory

    On 9/8/2025 5:57 AM, wij wrote:
    On Mon, 2025-09-08 at 11:20 +0300, Mikko wrote:
    On 2025-09-07 11:08:47 +0000, wij said:

    Particularly in POO Halt decider where C is used to describe TM.

    E.g. Terminating TM can only hit one 'ret' (in C), which one in HHH or
    DD counts
    as halt, or others?

    About Turing machines it means a configuration for which the rules
    don't specfy any action. About other automata the same or similar
    rule can be used.

    For typical computer machine language a rasonable definition is that
    the program has halted when the instrucion pointer points to a memory
    location that is not a part of the program asked about or a halt
    instruction is executed. A similar definition can be used for C and
    other typical programming langages.

    It seems your 'halt' means TM reads a symbol that has no corresponding action.

    That is one correct way to look at at.

    I thought 'halt' means TM enters one of its final states, e.g. accept/reject state.

    Technically any TM that immediately stops
    running is a decider.

    In computability theory, a decider is a Turing
    machine that halts for every input. https://en.wikipedia.org/wiki/Decider_(Turing_machine)

    I don't konw how TM is defined in the 'undefined' condition.

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From wij@wyniijj5@gmail.com to comp.theory on Tue Sep 9 09:13:03 2025
    From Newsgroup: comp.theory

    On Mon, 2025-09-08 at 19:59 -0500, olcott wrote:
    On 9/8/2025 5:57 AM, wij wrote:
    On Mon, 2025-09-08 at 11:20 +0300, Mikko wrote:
    On 2025-09-07 11:08:47 +0000, wij said:

    Particularly in POO Halt decider where C is used to describe TM.

    E.g. Terminating TM can only hit one 'ret' (in C), which one in HHH or DD counts
    as halt, or others?

    About Turing machines it means a configuration for which the rules
    don't specfy any action. About other automata the same or similar
    rule can be used.

    For typical computer machine language a rasonable definition is that
    the program has halted when the instrucion pointer points to a memory location that is not a part of the program asked about or a halt instruction is executed. A similar definition can be used for C and
    other typical programming langages.

    It seems your 'halt' means TM reads a symbol that has no corresponding action.

    That is one correct way to look at at.

    I thought 'halt' means TM enters one of its final states, e.g. accept/reject state.

    Technically any TM that immediately stops
    running is a decider.
    BULLSHIT !!!
    In computability theory, a decider is a Turing
    machine that halts for every input. https://en.wikipedia.org/wiki/Decider_(Turing_machine)

    As usual, you just copy/paste sth you don't understand.
    That 'halt' should be "reaching its accept/reject state", otherwise it is likely
    wrong (I did not read the link).
    I don't konw how TM is defined in the 'undefined' condition.


    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to comp.theory on Tue Sep 9 10:04:44 2025
    From Newsgroup: comp.theory

    On 2025-09-08 10:57:57 +0000, wij said:

    On Mon, 2025-09-08 at 11:20 +0300, Mikko wrote:
    On 2025-09-07 11:08:47 +0000, wij said:

    Particularly in POO Halt decider where C is used to describe TM.

    E.g. Terminating TM can only hit one 'ret' (in C), which one in HHH or> >>> > DD counts
    as halt, or others?

    About Turing machines it means a configuration for which the rules
    don't specfy any action. About other automata the same or similar
    rule can be used.

    For typical computer machine language a rasonable definition is that
    the program has halted when the instrucion pointer points to a memory
    location that is not a part of the program asked about or a halt
    instruction is executed. A similar definition can be used for C and
    other typical programming langages.

    It seems your 'halt' means TM reads a symbol that has no corresponding action.

    I thought 'halt' means TM enters one of its final states, e.g.
    accept/reject state.I don't konw how TM is defined in the 'undefined' condition.

    Turing assumed that there is an unambigous rule for every possible
    situation. Then the Turing machine halts if that rule tells it to
    halt. Most modern authors use a Post's definition or a similar one
    where halting as a stated above. Some aouthors further make the
    distinction that if there is no rules for a state then trat state
    is an accepting state, and if there are rules for the state but
    none of them is for the currect symbol then the state is a rejecting
    state.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to comp.theory on Tue Sep 9 10:16:26 2025
    From Newsgroup: comp.theory

    On 2025-09-08 23:27:16 +0000, olcott said:

    On 9/8/2025 3:20 AM, Mikko wrote:
    On 2025-09-07 11:08:47 +0000, wij said:

    Particularly in POO Halt decider where C is used to describe TM.

    E.g. Terminating TM can only hit one 'ret' (in C), which one in HHH or
    DD counts
    as halt, or others?

    About Turing machines it means a configuration for which the rules
    don't specfy any action. About other automata the same or similar
    rule can be used.

    There is no transition out of any final halt state.

    Most authors say that if a Turing machine enters a configuration where
    the state has rules but none of them is for the current tape symbol
    then the Turing machine halts in a reject state. Some autors use
    different definitions.

    For typical computer machine language a rasonable definition is that
    the program has halted when the instrucion pointer points to a memory
    location that is not a part of the program asked about or a halt
    instruction is executed. A similar definition can be used for C and
    other typical programming langages.


    For C functions its simplest to think of their "return"
    statement as their final state.

    In case of C one must also define whether a computation halts when
    a function executes a long jump or exit
    or executes an undefined behaviour
    or is interrupted by a signal that is or is not handled.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to comp.theory on Tue Sep 9 08:19:35 2025
    From Newsgroup: comp.theory

    On 9/8/2025 5:56 AM, Richard Heathfield wrote:
    On 07/09/2025 17:44, Richard Damon wrote:
    On 9/7/25 10:37 AM, olcott wrote:

    <snip>

    Can DD emulated by any HHH according to the semantics
    of the x86 language possibly reach its own emulated
    "ret" instruction final halt state?

    Abort means that HHH stops emulating DD.


    And where is that definition coming from?

    Olcott makes the rules up as he goes along. I sometimes think he sees a "decider" as a program with responsibility for dictating whether a
    program halts, rather than simply for determining whether...and /having/ decided, its decision is final, and reality can go swing.


    On 8/2/2024 11:32 PM, Jeff Barnett wrote:
    On 8/2/2024 7:19 PM, Mike Terry wrote:

    Definition: A TM P given input I is said to "halt" iff ?????
    or whatever...

    I think this is a rather hopeless venture without
    formally defining the representation of a TM. For
    example: In some formulations, there are specific
    states defined as "halting states" and the machine
    only halts if either the start state is a halt state or
    there is a transition to a halt state within the execution
    trace; In another formulation, machines halt if there
    is a transition to an undefined state. Note a few things:
    1) the if's above are really iff's, 2) these and many
    other definitions all have equivalent computing prowess,
    3) Some formulations define results by what is left on
    the tape (or other storage device) while others add the
    actual halting state to determine the results.

    In a conversation about such topics, gentlemen of good
    faith and reasonable knowledge can simple ignore these
    differences and not go off the rails.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to comp.theory on Tue Sep 9 11:16:32 2025
    From Newsgroup: comp.theory

    On 9/7/2025 9:53 AM, wij wrote:
    On Sun, 2025-09-07 at 09:37 -0500, olcott wrote:
    On 9/7/2025 8:20 AM, wij wrote:
    On Sun, 2025-09-07 at 08:00 -0400, Richard Damon wrote:
    On 9/7/25 7:08 AM, wij wrote:
    Particularly in POO Halt decider where C is used to describe TM.

    E.g. Terminating TM can only hit one 'ret' (in C), which one in HHH or DD counts
    as halt, or others?


    "Halting" in the case of C functions, is if the C function being talk
    about eventually returns to what would have been its caller when it is >>>> put into a context that called it.

    'halt' needs to be precisely defined, otherwise the discussion of POOH is pointless.


    Can DD emulated by any HHH according to the semantics
    of the x86 language possibly reach its own emulated
    "ret" instruction final halt state?

    Abort means that HHH stops emulating DD.

    What you say bear no meaning. Unless you can answer the question:

    What is the value of proposition X&~X? why? True or False (or Undecidable if none fits)?



    Within the principle of explosion that expression
    proves the Trump is the risen Christ and also
    proves the Trump is not the risen Christ.

    the law according to which any statement can
    be proven from a contradiction. https://en.wikipedia.org/wiki/Principle_of_explosion

    The POE is a psychotic break from reality that
    is only possible because modern symbolic logic
    (since the syllogism) quit having semantics directly
    embedded within the formal system.

    https://en.wikipedia.org/wiki/Relevance_logic
    Tries to fix this error.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Chris M. Thomasson@chris.m.thomasson.1@gmail.com to comp.theory on Tue Sep 9 11:56:50 2025
    From Newsgroup: comp.theory

    On 9/9/2025 9:16 AM, olcott wrote:
    On 9/7/2025 9:53 AM, wij wrote:
    On Sun, 2025-09-07 at 09:37 -0500, olcott wrote:
    On 9/7/2025 8:20 AM, wij wrote:
    On Sun, 2025-09-07 at 08:00 -0400, Richard Damon wrote:
    On 9/7/25 7:08 AM, wij wrote:
    Particularly in POO Halt decider where C is used to describe TM.

    E.g. Terminating TM can only hit one 'ret' (in C), which one in
    HHH or DD counts
    as halt, or others?


    "Halting" in the case of C functions, is if the C function being talk >>>>> about eventually returns to what would have been its caller when it is >>>>> put into a context that called it.

    'halt' needs to be precisely defined, otherwise the discussion of
    POOH is pointless.


    Can DD emulated by any HHH according to the semantics
    of the x86 language possibly reach its own emulated
    "ret" instruction final halt state?

    Abort means that HHH stops emulating DD.

    What you say bear no meaning. Unless you can answer the question:

    What is the value of proposition X&~X? why? True or False (or
    Undecidable if none fits)?



    Within the principle of explosion that expression
    proves the Trump is the risen Christ and also
    proves the Trump is not the risen Christ.

    Ummm... Did you decorate your soapbox?


    the law according to which any statement can
    be proven from a contradiction. https://en.wikipedia.org/wiki/Principle_of_explosion

    The POE is a psychotic break from reality that
    is only possible because modern symbolic logic
    (since the syllogism) quit having semantics directly
    embedded within the formal system.

    https://en.wikipedia.org/wiki/Relevance_logic
    Tries to fix this error.


    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to comp.theory on Wed Sep 10 10:38:06 2025
    From Newsgroup: comp.theory

    On 2025-09-07 14:37:14 +0000, olcott said:

    On 9/7/2025 8:20 AM, wij wrote:
    On Sun, 2025-09-07 at 08:00 -0400, Richard Damon wrote:
    On 9/7/25 7:08 AM, wij wrote:
    Particularly in POO Halt decider where C is used to describe TM.

    E.g. Terminating TM can only hit one 'ret' (in C), which one in HHH or >>>> DD counts
    as halt, or others?


    "Halting" in the case of C functions, is if the C function being talk
    about eventually returns to what would have been its caller when it is
    put into a context that called it.

    'halt' needs to be precisely defined, otherwise the discussion of POOH
    is pointless.

    Can DD emulated by any HHH according to the semantics
    of the x86 language possibly reach its own emulated
    "ret" instruction final halt state?

    Abort means that HHH stops emulating DD.

    Everything that mentions HHH is irrelevant to the meaning of "halt".
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2