Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.theory > #105325

Re: Every D correctly simulated by H cannot possibly reach its own line 06 and halt

From olcott <polcott333@gmail.com>
Newsgroups comp.theory, sci.logic
Subject Re: Every D correctly simulated by H cannot possibly reach its own line 06 and halt
Date 2024-05-20 21:25 -0500
Organization A noiseless patient Spider
Message-ID <v2h0nm$d87m$1@dont-email.me> (permalink)
References (29 earlier) <v2ef1c$1g2n9$14@i2pn2.org> <v2efle$3q0ko$1@dont-email.me> <v2fbtp$1g2n8$10@i2pn2.org> <v2g390$3ugq$6@dont-email.me> <v2grhq$1kiah$6@i2pn2.org>

Cross-posted to 2 groups.

Show all headers | View raw


On 5/20/2024 7:57 PM, Richard Damon wrote:
> On 5/20/24 2:03 PM, olcott wrote:
>> On 5/20/2024 6:24 AM, Richard Damon wrote:
>>> On 5/19/24 11:22 PM, olcott wrote:
>>>> On 5/19/2024 10:11 PM, Richard Damon wrote:
>>>>> On 5/19/24 10:52 PM, olcott wrote:
>>>>>> On 5/19/2024 8:10 PM, Richard Damon wrote:
>>>>>>> On 5/19/24 8:06 PM, olcott wrote:
>>>>>>>> On 5/1/2024 7:10 PM, Richard Damon wrote:
>>>>>>>>
>>>>>>>> typedef int (*ptr)();  // ptr is pointer to int function
>>>>>>>> 00 int H(ptr p, ptr i);
>>>>>>>> 01 int D(ptr p)
>>>>>>>> 02 {
>>>>>>>> 03   int Halt_Status = H(p, p);
>>>>>>>> 04   if (Halt_Status)
>>>>>>>> 05     HERE: goto HERE;
>>>>>>>> 06   return Halt_Status;
>>>>>>>> 07 }
>>>>>>>> 08
>>>>>>>> 09 int main()
>>>>>>>> 10 {
>>>>>>>> 11   H(D,D);
>>>>>>>> 12   return 0;
>>>>>>>> 13 }
>>>>>>>>
>>>>>>>> In the above case a simulator is an x86 emulator that correctly 
>>>>>>>> emulates at least one of the x86 instructions of D in the order 
>>>>>>>> specified by the x86 instructions of D.
>>>>>>>>
>>>>>>>> This may include correctly emulating the x86 instructions of H 
>>>>>>>> in the order specified by the x86 instructions of H thus calling 
>>>>>>>> H(D,D) in recursive simulation.
>>>>>>>>
>>>>>>>> For every H/D pair of the above template D correctly simulated by
>>>>>>>> *pure function* H cannot possibly reach its own final state at
>>>>>>>> line 06 and halt.
>>>>>>>>
>>>>>>>
>>>>>>> Ok, so adding that H is a pure function, that means that since 
>>>>>>> your outer H(D,D) is going to return 0, all logic must be 
>>>>>>> compatible with the fact that EVERY call to H(D,D) will also 
>>>>>>> eventually return 0.
>>>>>>>
>>>>>>>
>>>>>>> Remember also, THIS D is defined to call THIS H, that does 
>>>>>>> exactly the same as the H that is deciding it.
>>>>>>>
>>>>>>
>>>>>> OK, good.
>>>>>
>>>>> Right, so it doesn't matter what any other D does, it matters what 
>>>>> THIS D does, and this D calls aths H.
>>>>>
>>>>> Remember, you reinstated the Computation model by enforcing Pure 
>>>>> Functions.
>>>>>
>>>>>>
>>>>>>>>
>>>>>>>> <snip so that Message ID links to whole message>
>>>>>>>> We can use my unique time/date stamp as an alternative.
>>>>>>>>
>>>>>>>>> Remember, YOU are the one saying you are needing to change the 
>>>>>>>>> definition from the classical theory, where we have things well 
>>>>>>>>> defined.
>>>>>>>>>
>>>>>>>>> YOU have decider that H is just whatever C code you want to 
>>>>>>>>> write for it, and D is the input proved. (which doesn't 
>>>>>>>>> actually match the Linz or Sipser proof, but fairly close).
>>>>>>>>>
>>>>>>>>> With THAT set of definitions we have a lot of options that 
>>>>>>>>> break your incorrectly assumed results.
>>>>>>>>>
>>>>>>>>> The first method has been discussed here by Flibble. While the 
>>>>>>>>> final answer he got to doesn't fit the requirements, the first 
>>>>>>>>> part of the method DOES show that it is possible for an H to 
>>>>>>>>> simulate to past line 3.
>>>>>>>>>
>>>>>>>>> THe basic idea is that if H(M,d) finds that its simulation of 
>>>>>>>>> M(d) get to a call to H(M,d) then rather that your idea of just 
>>>>>>>>> saying it will get stuck and declair the input invalid, since 
>>>>>>>>> there ARE a number of possible inputs that there is a "correct" 
>>>>>>>>> answer that H can give to 
>>>>>>>>
>>>>>>>> That D is calling H does not prove recursive simulation.
>>>>>>>> That D is calling H with its same parameters does seem
>>>>>>>> to prove non-halting recursive simulation.
>>>>>>>
>>>>>>> Nope. Try to actuall PROVE it.
>>>>>>>
>>>>>>
>>>>>> That is off-topic for this post.
>>>>>> All that we need know is that no D simulated by any H
>>>>>> ever reaches its own line 06 and halts.
>>>>>
>>>>> Nope. Make a claim, you need to prove it.
>>>>>
>>>>
>>>> *In other different post not this one*
>>>>
>>>> I am using categorically exhaustive reasoning that can work
>>>> through every possibility that can possibly exist in a feasible
>>>> amount of time as long as the category is very very narrow.
>>>
>>> But you can't PRECISELY define the category, or what you want to 
>>> reason about, so your logic is worthless as it is baseless.
>>>
>>
>> *POINT TO ANY ACTUAL MISTAKE OR AMBIGUITY WITH THIS VERSION*
>>
>> typedef int (*ptr)();  // ptr is pointer to int function
>> 00 int H(ptr p, ptr i);
>> 01 int D(ptr p)
>> 02 {
>> 03   int Halt_Status = H(p, p);
>> 04   if (Halt_Status)
>> 05     HERE: goto HERE;
>> 06   return Halt_Status;
>> 07 }
>> 08
>> 09 int main()
>> 10 {
>> 11   H(D,D);
>> 12   return 0;
>> 13 }
>>
>> In the above case a simulator is an x86 emulator that correctly 
>> emulates at least one of the x86 instructions of D in the order 
>> specified by the x86 instructions of D.
>>
>> This may include correctly emulating the x86 instructions of H in the 
>> order specified by the x86 instructions of H thus calling H(D,D) in 
>> recursive simulation.
>>
>> Execution Trace
>> Line 11: main() invokes H(D,D);
>>
>> keeps repeating (unless aborted)
>> Line 01:
>> Line 02:
>> Line 03: simulated D(D) invokes simulated H(D,D) that simulates D(D)
>>
>> Simulation invariant:
>> D correctly simulated by H cannot possibly reach past its own line 03.
>>
>> For every H/D pair of the above template D correctly simulated by pure 
>> function (thus computable function) H cannot possibly reach its own 
>> final state at line 06 and halt.
>>
> 
> Which thus doesn't correct simulate the call to H 

*Counter-factual, try again*
We are not talking about any of your misconceptions the term:
"simulate" is expressly defined.

This is the only post about this subject that I will respond
to from you. I have to paint half of my house and empty my
garage within about a week.

If you can find some source that conclusively proves that
not all pure functions are computable functions I would like
to see it. All of the experts that I could find seem to agree
that all pure functions in C would be computable functions
by a Turing machine.

I skimmed the rest of your posts and they were mostly
trying to get away with changing the subject to divert
attention away from the point at hand in this subject line.

I will not discuss and theory of computation stuff with you
until after you quit playing head games with the subject
of this post.

*THINKING THE WRONG ANSWERS ARE ALLOWED IS A HEAD GAME*
*THINKING THE WRONG ANSWERS ARE ALLOWED IS A HEAD GAME*
*THINKING THE WRONG ANSWERS ARE ALLOWED IS A HEAD GAME*

On 5/19/2024 12:17 PM, Richard Damon wrote:
 > On 5/19/24 9:59 AM, olcott wrote:
 >> Richard has stated that he thinks that an example of
 >> {D never simulated by H} ∈ {every D simulated by H}
 >
 > No, the H that didn't simulate its input shows that
 > *once you allow H to not be required to be correct*,
 > that we can then have a trivial function that is
 > "just as correct" (since wrong answers were allowed).

I am glad to see that it turned out that you were not a liar.
That was very reassuring. Seems to be a liar to me until I see
proof otherwise is not the same thing as calling you a liar.

If you think it is fun to endlessly talk in circles then
you will get very little dialogue with me.

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

Back to comp.theory | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-27 19:17 -0500
  Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-27 20:49 -0400
    Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-27 19:58 -0500
      Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-27 21:39 -0400
        Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-27 20:54 -0500
          Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-27 22:09 -0400
            Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-27 21:33 -0500
              Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-27 23:31 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-27 22:45 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 09:13 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 08:45 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 10:00 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 09:15 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 13:34 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 12:55 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 14:18 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 13:23 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 14:42 -0400
                Re: Can D simulated by H terminate normally? POE olcott <polcott333@gmail.com> - 2024-04-28 14:06 -0500
                Re: Can D simulated by H terminate normally? POE Richard Damon <richard@damon-family.org> - 2024-04-28 15:29 -0400
                Re: Can D simulated by H terminate normally? POE olcott <polcott333@gmail.com> - 2024-04-28 14:43 -0500
                Re: Can D simulated by H terminate normally? POE Richard Damon <richard@damon-family.org> - 2024-04-28 19:07 -0400
                Re: Can D simulated by H terminate normally? POE olcott <polcott333@gmail.com> - 2024-04-28 17:28 -0500
                Re: Can D simulated by H terminate normally? POE Richard Damon <richard@damon-family.org> - 2024-04-28 19:01 -0400
                Re: Can D simulated by H terminate normally? POE olcott <polcott333@gmail.com> - 2024-04-28 23:07 -0500
                Re: Can D simulated by H terminate normally? POE Richard Damon <richard@damon-family.org> - 2024-04-29 07:25 -0400
                Re: Can D simulated by H terminate normally? POE olcott <polcott333@gmail.com> - 2024-04-29 09:47 -0500
                Re: Can D simulated by H terminate normally? POE Richard Damon <richard@damon-family.org> - 2024-04-29 19:19 -0400
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 14:25 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 13:33 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 14:44 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 14:00 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 15:14 -0400
          Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-04-28 11:30 +0300
            Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 08:06 -0500
              Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 09:14 -0400
  Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-04-28 11:23 +0300
    Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 07:56 -0500
      Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 09:19 -0400
        Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 08:52 -0500
          Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 11:08 -0400
            Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 10:33 -0500
              Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 12:08 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 12:50 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 14:06 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 13:19 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 14:39 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 13:52 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 15:18 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 14:26 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 15:36 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 14:48 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 19:05 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 22:48 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-29 07:25 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-29 09:51 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-29 19:19 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-30 01:07 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-30 07:33 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-30 10:55 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-30 18:46 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-30 22:56 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-01 07:23 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 11:11 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-01 20:10 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 21:59 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-01 23:50 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 23:02 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-02 00:06 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 23:13 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-02 00:17 -0400
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-18 09:11 -0400
                Re: Can D simulated by H terminate normally? --- Message-ID provided olcott <polcott333@gmail.com> - 2024-05-18 11:24 -0500
                Re: Can D simulated by H terminate normally? --- Message-ID provided Richard Damon <richard@damon-family.org> - 2024-05-18 12:49 -0400
                Re: Can D simulated by H terminate normally? --- Message-ID provided olcott <polcott333@gmail.com> - 2024-05-18 12:20 -0500
                Re: Can D simulated by H terminate normally? --- Message-ID provided Richard Damon <richard@damon-family.org> - 2024-05-18 13:40 -0400
                Re: Can D simulated by H terminate normally? --- Message_ID Provided olcott <polcott333@gmail.com> - 2024-05-18 13:54 -0500
                Re: Can D simulated by H terminate normally? --- Message_ID Provided Richard Damon <richard@damon-family.org> - 2024-05-18 15:15 -0400
                Re: Can D simulated by H terminate normally? --- Message_ID Provided olcott <polcott333@gmail.com> - 2024-05-18 14:24 -0500
                Re: Can D simulated by H terminate normally? --- Message_ID Provided Richard Damon <richard@damon-family.org> - 2024-05-18 15:42 -0400
                Re: Can D simulated by H terminate normally? --- Message_ID Provided Richard Damon <richard@damon-family.org> - 2024-05-18 15:18 -0400
                Re: Can D simulated by H terminate normally? --- Message_ID Provided olcott <polcott333@gmail.com> - 2024-05-18 14:28 -0500
                Re: Can D simulated by H terminate normally? --- Message_ID Provided Richard Damon <richard@damon-family.org> - 2024-05-18 15:42 -0400
                Re: Can D simulated by H terminate normally? --- Message_ID Provided olcott <polcott333@gmail.com> - 2024-05-18 14:57 -0500
                Re: Can D simulated by H terminate normally? --- Message_ID Provided Richard Damon <richard@damon-family.org> - 2024-05-18 16:02 -0400
                Re: Can D simulated by H terminate normally? --- Message_ID Provided olcott <polcott333@gmail.com> - 2024-05-18 16:00 -0500
                Re: Can D simulated by H terminate normally? --- Message_ID Provided Richard Damon <richard@damon-family.org> - 2024-05-18 18:22 -0400
                Re: Can D simulated by H terminate normally? --- Message_ID Provided olcott <polcott333@gmail.com> - 2024-05-18 17:44 -0500
                Re: Can D simulated by H terminate normally? --- Message_ID Provided Richard Damon <richard@damon-family.org> - 2024-05-18 19:06 -0400
                Re: Can D simulated by H terminate normally? --- Message_ID Provided olcott <polcott333@gmail.com> - 2024-05-18 18:24 -0500
                Re: Can D simulated by H terminate normally? --- Message_ID Provided Richard Damon <richard@damon-family.org> - 2024-05-18 19:38 -0400
                Re: Can D simulated by H terminate normally? --- Message_ID Provided olcott <polcott333@gmail.com> - 2024-05-18 22:59 -0500
                Re: Can D simulated by H terminate normally? --- Message_ID Provided immibis <news@immibis.com> - 2024-05-19 14:16 +0200
                Re: Can D simulated by H terminate normally? --- Message_ID Provided olcott <polcott333@gmail.com> - 2024-05-19 08:06 -0500
                Re: Can D simulated by H terminate normally? --- Message_ID Provided immibis <news@immibis.com> - 2024-05-20 06:37 +0200
                Re: Can D simulated by H terminate normally? --- Message_ID Provided olcott <polcott333@gmail.com> - 2024-05-20 00:17 -0500
                Re: Can D simulated by H terminate normally? --- Message_ID Provided immibis <news@immibis.com> - 2024-05-20 10:37 +0200
                Re: Can D simulated by H terminate normally? --- Message_ID Provided olcott <polcott333@gmail.com> - 2024-05-20 10:32 -0500
                Re: Can D simulated by H terminate normally? --- Message_ID Provided Richard Damon <richard@damon-family.org> - 2024-05-20 20:57 -0400
                Re: Can D simulated by H terminate normally? --- Message_ID Provided Richard Damon <richard@damon-family.org> - 2024-05-20 07:24 -0400
                Re: Can D simulated by H terminate normally? --- Message_ID Provided olcott <polcott333@gmail.com> - 2024-05-20 13:17 -0500
                Re: Can D simulated by H terminate normally? --- Message_ID Provided Richard Damon <richard@damon-family.org> - 2024-05-20 20:57 -0400
                Re: Can D simulated by H terminate normally? --- Message_ID Provided olcott <polcott333@gmail.com> - 2024-05-19 08:14 -0500
                Re: Can D simulated by H terminate normally? --- Message_ID Provided Richard Damon <richard@damon-family.org> - 2024-05-19 13:17 -0400
                Re: Can D simulated by H terminate normally? --- Message_ID Provided immibis <news@immibis.com> - 2024-05-20 11:01 +0200
                Re: Can D simulated by H terminate normally? --- Message_ID Provided olcott <polcott333@gmail.com> - 2024-05-20 10:18 -0500
                Re: Can D simulated by H terminate normally? --- Message_ID Provided Richard Damon <richard@damon-family.org> - 2024-05-20 20:57 -0400
                Re: Can D simulated by H terminate normally? --- Message_ID Provided Richard Damon <richard@damon-family.org> - 2024-05-19 13:17 -0400
                Re: Can D simulated by H terminate normally? --- Message_ID Provided olcott <polcott333@gmail.com> - 2024-05-19 14:46 -0500
                Re: Can D simulated by H terminate normally? --- Message_ID Provided Richard Damon <richard@damon-family.org> - 2024-05-19 19:31 -0400
                Re: Can D simulated by H terminate normally? --- Message_ID Provided olcott <polcott333@gmail.com> - 2024-05-20 13:28 -0500
                Re: Can D simulated by H terminate normally? --- Message_ID Provided Richard Damon <richard@damon-family.org> - 2024-05-20 20:57 -0400
                Re: Can D simulated by H terminate normally? --- Message_ID Provided immibis <news@immibis.com> - 2024-05-21 06:50 +0200
                Re: Can D simulated by H terminate normally? --- Message_ID Provided olcott <polcott333@gmail.com> - 2024-05-21 00:05 -0500
                Re: Can D simulated by H terminate normally? Message_ID Provided V2 olcott <polcott333@gmail.com> - 2024-05-19 19:06 -0500
                Re: Can D simulated by H terminate normally? Message_ID Provided V2 Richard Damon <richard@damon-family.org> - 2024-05-19 21:10 -0400
                Re: Can D simulated by H terminate normally? Message_ID Provided V2 olcott <polcott333@gmail.com> - 2024-05-19 21:52 -0500
                Re: Can D simulated by H terminate normally? Message_ID Provided V2 Richard Damon <richard@damon-family.org> - 2024-05-19 23:11 -0400
                Every D correctly simulated by H cannot possible reach its own line 06 and halt olcott <polcott333@gmail.com> - 2024-05-19 22:22 -0500
                Re: Every D correctly simulated by H cannot possible reach its own line 06 and halt Richard Damon <richard@damon-family.org> - 2024-05-20 07:24 -0400
                Re: Every D correctly simulated by H cannot possible reach its own line 06 and halt olcott <polcott333@gmail.com> - 2024-05-20 13:03 -0500
                Re: Every D correctly simulated by H cannot possible reach its own line 06 and halt Richard Damon <richard@damon-family.org> - 2024-05-20 20:57 -0400
                Re: Every D correctly simulated by H cannot possibly reach its own line 06 and halt olcott <polcott333@gmail.com> - 2024-05-20 21:25 -0500
                Re: Every D correctly simulated by H cannot possibly reach its own line 06 and halt Richard Damon <richard@damon-family.org> - 2024-05-20 22:39 -0400
                Re: Every D correctly simulated by H cannot possibly reach its own line 06 and halt olcott <polcott333@gmail.com> - 2024-05-21 00:18 -0500
                Re: Every D correctly simulated by H cannot possibly reach its own line 06 and halt Richard Damon <richard@damon-family.org> - 2024-05-21 08:03 -0400
                Re: Every D correctly simulated by H cannot possibly reach its own line 06 and halt olcott <polcott333@gmail.com> - 2024-05-21 09:22 -0500
                Re: Every D correctly simulated by H cannot possibly reach its own line 06 and halt Richard Damon <richard@damon-family.org> - 2024-05-21 21:46 -0400
                Re: Every D correctly simulated by H cannot possibly reach its own line 06 and halt olcott <polcott333@gmail.com> - 2024-05-21 21:05 -0500
                Re: Every D correctly simulated by H cannot possibly reach its own line 06 and halt Richard Damon <richard@damon-family.org> - 2024-05-21 23:09 -0400
                Re: Every D correctly simulated by H cannot possibly reach its own line 06 and halt olcott <polcott333@gmail.com> - 2024-05-21 22:52 -0500
                Re: Every D correctly simulated by H cannot possibly reach its own line 06 and halt Richard Damon <richard@damon-family.org> - 2024-05-22 07:48 -0400
                Every D correctly simulated by H remains stuck in recursive simulation olcott <polcott333@gmail.com> - 2024-05-22 10:41 -0500
                Re: Every D correctly simulated by H remains stuck in recursive simulation Richard Damon <richard@damon-family.org> - 2024-05-22 19:01 -0400
                Re: Every D correctly simulated by H remains stuck in recursive simulation olcott <polcott333@gmail.com> - 2024-05-22 21:15 -0500
                Re: Every D correctly simulated by H remains stuck in recursive simulation Richard Damon <richard@damon-family.org> - 2024-05-22 22:36 -0400
                Re: Every D correctly simulated by H cannot possibly reach its own line 06 and halt "Fred. Zwarts" <F.Zwarts@HetNet.nl> - 2024-05-22 09:52 +0200
                Re: Every D correctly simulated by H cannot possibly reach its own line 06 and halt joes <noreply@example.com> - 2024-05-22 10:26 +0000
                Re: Can D simulated by H terminate normally? Message_ID Provided V2 immibis <news@immibis.com> - 2024-05-20 13:31 +0200
                Re: Can D simulated by H terminate normally? Message_ID Provided V2 olcott <polcott333@gmail.com> - 2024-05-20 10:23 -0500
                Re: Can D simulated by H terminate normally? Message_ID Provided V2 Richard Damon <richard@damon-family.org> - 2024-05-20 20:57 -0400
                Every D correctly simulated by H cannot possible reach its own line 06 and halt olcott <polcott333@gmail.com> - 2024-05-19 22:09 -0500
                Re: Every D correctly simulated by H cannot possible reach its own line 06 and halt Richard Damon <richard@damon-family.org> - 2024-05-19 23:24 -0400
                Re: Every D correctly simulated by H cannot possible reach its own line 06 and halt olcott <polcott333@gmail.com> - 2024-05-19 22:32 -0500
                Re: Every D correctly simulated by H cannot possible reach its own line 06 and halt Richard Damon <richard@damon-family.org> - 2024-05-20 07:24 -0400
                Re: Every D correctly simulated by H cannot possible reach its own line 06 and halt olcott <polcott333@gmail.com> - 2024-05-20 13:01 -0500
                Re: Every D correctly simulated by H cannot possible reach its own line 06 and halt Richard Damon <richard@damon-family.org> - 2024-05-20 20:57 -0400
                Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-04-29 16:44 +0300
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-29 09:20 -0500
                Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-04-30 13:27 +0300
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-30 10:50 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-30 18:46 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-30 23:19 -0500
                Re: Can D simulated by H terminate normally? Alan Mackenzie <acm@muc.de> - 2024-05-01 09:42 +0000
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 10:26 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-01 20:16 -0400
                Re: Can D simulated by H terminate normally? André G. Isaak <agisaak@gm.invalid> - 2024-05-01 18:44 -0600
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-01 21:13 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 20:44 -0500
                Re: Can D simulated by H terminate normally? André G. Isaak <agisaak@gm.invalid> - 2024-05-01 20:30 -0600
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 22:55 -0500
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 22:03 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-01 23:54 -0400
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-01 07:23 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 11:26 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-01 20:25 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 22:12 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-01 23:54 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 23:08 -0500
                Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-05-01 12:51 +0300
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 10:51 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-01 20:28 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 22:16 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-01 23:50 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 23:04 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-02 00:10 -0400
                Re: Can D simulated by H terminate normally? --- olcott <polcott333@gmail.com> - 2024-05-01 23:24 -0500
                Re: Can D simulated by H terminate normally? --- Richard Damon <richard@damon-family.org> - 2024-05-02 07:04 -0400
                Re: Can D simulated by H terminate normally? --- olcott <polcott333@gmail.com> - 2024-05-02 13:48 -0500
                Re: Can D simulated by H terminate normally? --- Richard Damon <richard@damon-family.org> - 2024-05-02 21:48 -0400
                Re: Can D simulated by H terminate normally? --- olcott <polcott333@gmail.com> - 2024-05-03 07:17 -0500
                Re: Can D simulated by H terminate normally? --- Richard Damon <richard@damon-family.org> - 2024-05-03 22:12 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 23:21 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-02 07:03 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-02 13:46 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-02 21:48 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-03 07:22 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <Richard@Damon-Family.org> - 2024-05-03 18:15 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 23:23 -0500
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 23:27 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-02 07:04 -0400
                Is Richard a Liar? olcott <polcott333@gmail.com> - 2024-05-14 10:42 -0500
                Re: Olcott is a Liar! Richard Damon <richard@damon-family.org> - 2024-05-14 22:15 -0400
                Re: Can D simulated by H terminate normally? Alan Mackenzie <acm@muc.de> - 2024-04-29 14:37 +0000
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-29 09:56 -0500
                Re: Can D simulated by H terminate normally? Alan Mackenzie <acm@muc.de> - 2024-04-29 15:23 +0000
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-29 10:50 -0500
                Re: Can D simulated by H terminate normally? Alan Mackenzie <acm@muc.de> - 2024-04-29 16:17 +0000
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-29 12:31 -0500
                Re: Can D simulated by H terminate normally? Alan Mackenzie <acm@muc.de> - 2024-04-29 18:19 +0000
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-29 14:04 -0500
                Re: Can D simulated by H terminate normally? "Fred. Zwarts" <F.Zwarts@HetNet.nl> - 2024-04-30 10:46 +0200
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-30 10:18 -0500
                Re: Can D simulated by H terminate normally? "Fred. Zwarts" <F.Zwarts@HetNet.nl> - 2024-04-30 17:37 +0200
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-30 11:10 -0500
                Re: Can D simulated by H terminate normally? "Fred. Zwarts" <F.Zwarts@HetNet.nl> - 2024-04-30 18:24 +0200
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-30 11:27 -0500
                Re: Can D simulated by H terminate normally? "Fred. Zwarts" <F.Zwarts@HetNet.nl> - 2024-04-30 19:38 +0200
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-30 13:26 -0500
                Re: Can D simulated by H terminate normally? "Fred. Zwarts" <F.Zwarts@HetNet.nl> - 2024-05-01 11:02 +0200
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 10:20 -0500
                Re: Can D simulated by H terminate normally? "Fred. Zwarts" <F.Zwarts@HetNet.nl> - 2024-05-02 17:10 +0200
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-02 13:42 -0500
                Re: Can D simulated by H terminate normally? Alan Mackenzie <acm@muc.de> - 2024-04-30 15:44 +0000
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-30 11:15 -0500
                Re: Can D simulated by H terminate normally? Alan Mackenzie <acm@muc.de> - 2024-04-30 16:46 +0000
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-30 13:24 -0500
                Re: Can D simulated by H terminate normally? Alan Mackenzie <acm@muc.de> - 2024-05-01 10:01 +0000
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 10:34 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-01 20:31 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 22:22 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-01 23:53 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 23:07 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-02 00:13 -0400
                Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-05-02 12:16 +0300
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-02 09:50 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-02 21:48 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-03 07:36 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-03 22:09 -0400
                Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-05-04 12:23 +0300
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-04 08:49 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-04 13:50 -0400
                Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-05-05 11:01 +0300
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-05 09:28 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-05 12:55 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-05 12:38 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-05 14:15 -0400
                Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-05-06 18:05 +0300
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-06 11:02 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-06 22:20 -0400
                Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-05-03 12:17 +0300
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-03 06:40 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-03 22:10 -0400
                Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-05-04 12:26 +0300
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-04 08:51 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-04 12:00 -0400
                Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-05-05 11:08 +0300
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-05 09:32 -0500
                Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-05-06 18:08 +0300
                Re: Can D simulated by H terminate normally? Alan Mackenzie <acm@muc.de> - 2024-05-02 09:29 +0000
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-02 13:05 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-02 21:49 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-03 07:40 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-03 23:33 -0400
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-02 21:49 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-03 07:52 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-03 22:19 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-02 14:52 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-30 18:46 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-30 23:28 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-01 07:23 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 11:32 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-01 20:36 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 22:26 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-01 23:56 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 22:59 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-02 00:08 -0400
                Re: Can D simulated by H terminate normally? Alan Mackenzie <acm@muc.de> - 2024-05-02 09:39 +0000
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-02 13:35 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-02 21:48 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-03 07:25 -0500
                Re: Can D simulated by H terminate normally? joes <noreply@example.com> - 2024-05-03 19:30 +0000
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-03 16:26 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-03 22:35 -0400
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-03 22:29 -0400
                Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-05-03 12:33 +0300
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-03 06:55 -0500
                Re: Can D simulated by H terminate normally? joes <noreply@example.com> - 2024-05-03 13:40 +0000
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-03 08:47 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-03 22:41 -0400
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-03 22:38 -0400
                Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-05-04 12:47 +0300
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-04 08:56 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-04 12:07 -0400
                Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-05-05 11:14 +0300
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-05 09:38 -0500
                Re: Can D simulated by H terminate normally? joes <noreply@example.com> - 2024-05-05 17:07 +0000
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-05 12:43 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-05 14:20 -0400
                Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-05-06 18:16 +0300
                Re: Can D simulated by H terminate normally? immibis <news@immibis.com> - 2024-05-07 03:37 +0200
                Re: Can D simulated by H terminate normally? Alan Mackenzie <acm@muc.de> - 2024-05-02 09:07 +0000
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-02 12:45 -0500
                Re: Can D simulated by H terminate normally? joes <noreply@example.com> - 2024-05-02 21:51 +0000
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-02 16:55 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-02 21:48 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-03 07:27 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-03 22:42 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-02 17:10 -0500
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-29 14:31 -0500
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 13:54 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 15:23 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 13:58 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 15:25 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 14:35 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 15:45 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 14:51 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-28 19:07 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-28 22:58 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-29 07:24 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-29 09:43 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-29 19:19 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-30 00:54 -0500
                Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-04-30 13:22 +0300
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-30 10:45 -0500
                Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-05-01 13:03 +0300
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 11:00 -0500
                Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-05-02 12:00 +0300
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-02 09:43 -0500
                Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-05-03 12:43 +0300
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-03 07:13 -0500
                Re: Can D simulated by H terminate normally? Alan Mackenzie <acm@muc.de> - 2024-05-03 14:08 +0000
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-03 09:34 -0500
                Re: Can D simulated by H terminate normally? Alan Mackenzie <acm@muc.de> - 2024-05-03 19:33 +0000
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-03 14:43 -0500
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-03 15:08 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-03 23:09 -0400
                Re: Can D simulated by H terminate normally? joes <noreply@example.com> - 2024-05-03 19:10 +0000
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-03 16:22 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-04 08:43 -0400
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-03 23:07 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-03 23:20 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-04 08:53 -0400
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-03 22:54 -0400
                Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-05-04 13:10 +0300
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-04 08:59 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-04 13:51 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-02 15:13 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-30 07:40 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-30 10:58 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-04-30 18:46 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-30 23:11 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-01 07:23 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 11:06 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-01 20:41 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 22:29 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-01 23:59 -0400
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-05-01 23:09 -0500
                Re: Can D simulated by H terminate normally? Richard Damon <richard@damon-family.org> - 2024-05-02 00:15 -0400
              Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-04-29 15:27 +0300
                Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-29 09:14 -0500
      Re: Can D simulated by H terminate normally? Mikko <mikko.levanto@iki.fi> - 2024-04-29 15:22 +0300
        Re: Can D simulated by H terminate normally? olcott <polcott333@gmail.com> - 2024-04-29 09:10 -0500

csiph-web