Rocksolid Light

Welcome to Rocksolid Light

mail  files  register  newsreader  groups  login

Message-ID:  

Everyone has a purpose in life. Perhaps yours is watching television. -- David Letterman


devel / comp.theory / D(D) simulated by H cannot possibly reach past its own line 03

SubjectAuthor
* D(D) simulated by H cannot possibly reach past its own line 03olcott
+* Re: D(D) simulated by H cannot possibly reach past its own line 03Richard Damon
|`* Re: D(D) simulated by H cannot possibly reach past its own line 03olcott
| `- Re: D(D) simulated by H cannot possibly reach past its own line 03Richard Damon
+* Re: D(D) simulated by H cannot possibly reach past its own line 03olcott
|+- Re: D(D) simulated by H cannot possibly reach past its own line 03Richard Damon
|`* Re: D(D) simulated by H cannot possibly reach past its own line 03olcott
| `- Re: D(D) simulated by H cannot possibly reach past its own line 03Richard Damon
`* Re: D(D) simulated by H cannot possibly reach past its own line 03olcott
 `* Re: D(D) simulated by H cannot possibly reach past its own line 03Richard Damon
  `* Re: D(D) simulated by H cannot possibly reach past its own line 03olcott
   `- Re: D(D) simulated by H cannot possibly reach past its own line 03Richard Damon

1
D(D) simulated by H cannot possibly reach past its own line 03

<v12pgu$im12$1@dont-email.me>

  copy mid

https://news.novabbs.org/devel/article-flat.php?id=58138&group=comp.theory#58138

  copy link   Newsgroups: comp.theory sci.logic
Path: i2pn2.org!rocksolid2!news.neodome.net!news.mixmin.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: polcott333@gmail.com (olcott)
Newsgroups: comp.theory,sci.logic
Subject: D(D) simulated by H cannot possibly reach past its own line 03
Date: Fri, 3 May 2024 08:40:46 -0500
Organization: A noiseless patient Spider
Lines: 48
Message-ID: <v12pgu$im12$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Fri, 03 May 2024 15:40:46 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="42a0fc3cdc0841239d3b757772d0e924";
logging-data="612386"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/6DxfUUm82BqxKM9J8X91b"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:3wx16VqrDXkpcZHpHjZgVIvkeSA=
Content-Language: en-US
 by: olcott - Fri, 3 May 2024 13:40 UTC

00 int H(ptr x, ptr x) // ptr is pointer to int function
01 int D(ptr x)
02 {
03 int Halt_Status = H(x, x);
04 if (Halt_Status)
05 HERE: goto HERE;
06 return Halt_Status;
07 }
08
09 void main()
10 {
11 H(D,D);
12 }

We are examining the behavior of D(D) for every possible H/D pair
where 1 to N steps of D(D) are simulated by H.

*Execution Trace*
Line 11: main() invokes H(D,D) that simulates 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.

(a) It is a verified fact that for every possible H/D pair where
1 to N steps of D(D) are simulated by H that this simulated D(D)
cannot possibly reach past its own line 03.

(b) Rebuttals must show a counter example where 1 to N steps
of D(D) are simulated by H and the simulated D(D) reaches past
its own line 03.

*Termination Analyzer H is Not Fooled by Pathological Input D*
https://www.researchgate.net/publication/369971402_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D

*Fully operational code implemented in the x86utm operating system*
https://github.com/plolcott/x86utm

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

Re: D(D) simulated by H cannot possibly reach past its own line 03

<v13mdn$30j8u$1@i2pn2.org>

  copy mid

https://news.novabbs.org/devel/article-flat.php?id=58144&group=comp.theory#58144

  copy link   Newsgroups: comp.theory sci.logic
Path: i2pn2.org!.POSTED!not-for-mail
From: richard@damon-family.org (Richard Damon)
Newsgroups: comp.theory,sci.logic
Subject: Re: D(D) simulated by H cannot possibly reach past its own line 03
Date: Fri, 3 May 2024 17:53:59 -0400
Organization: i2pn2 (i2pn.org)
Message-ID: <v13mdn$30j8u$1@i2pn2.org>
References: <v12pgu$im12$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Fri, 3 May 2024 21:54:00 -0000 (UTC)
Injection-Info: i2pn2.org;
logging-data="3165470"; mail-complaints-to="usenet@i2pn2.org";
posting-account="diqKR1lalukngNWEqoq9/uFtbkm5U+w3w6FQ0yesrXg";
User-Agent: Mozilla Thunderbird
Content-Language: en-US
In-Reply-To: <v12pgu$im12$1@dont-email.me>
X-Spam-Checker-Version: SpamAssassin 4.0.0
 by: Richard Damon - Fri, 3 May 2024 21:53 UTC

On 5/3/24 9:40 AM, olcott wrote:
> 00 int H(ptr x, ptr x)  // ptr is pointer to int function
> 01 int D(ptr x)
> 02 {
> 03   int Halt_Status = H(x, x);
> 04   if (Halt_Status)
> 05     HERE: goto HERE;
> 06   return Halt_Status;
> 07 }
> 08
> 09 void main()
> 10 {
> 11   H(D,D);
> 12 }
>
> We are examining the behavior of D(D) for every possible H/D pair
> where 1 to N steps of D(D) are simulated by H.
>
> *Execution Trace*
> Line 11: main() invokes H(D,D) that simulates 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.
>
> (a) It is a verified fact that for every possible H/D pair where
> 1 to N steps of D(D) are simulated by H that this simulated D(D)
> cannot possibly reach past its own line 03.

Nope.

>
> (b) Rebuttals must show a counter example where 1 to N steps
> of D(D) are simulated by H and the simulated D(D) reaches past
> its own line 03.

WAS DONE.

>
> *Termination Analyzer H is Not Fooled by Pathological Input D*
> https://www.researchgate.net/publication/369971402_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
>
> *Fully operational code implemented in the x86utm operating system*
> https://github.com/plolcott/x86utm
>
>
>

Proven wrong, and you have declined to try to refute that proof.

If you claim I haven't done this, make a clear statement of that claim,
with a clear statement that if I can point out where I did this, and you
failed to respond, you will admit that you are just wrong and will admit
that you logic is just broken and will give up the statement that people
haven't refuted you.

Unitl then, you have effectively conceded that you statement is just
FALSE, and your repeating it is just demonstration that are just a
pathological liar that doesn't understand what he is talking abour.

Re: D(D) simulated by H cannot possibly reach past its own line 03

<v13p9h$phf4$1@dont-email.me>

  copy mid

https://news.novabbs.org/devel/article-flat.php?id=58180&group=comp.theory#58180

  copy link   Newsgroups: comp.theory sci.logic
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: polcott333@gmail.com (olcott)
Newsgroups: comp.theory,sci.logic
Subject: Re: D(D) simulated by H cannot possibly reach past its own line 03
Date: Fri, 3 May 2024 17:42:57 -0500
Organization: A noiseless patient Spider
Lines: 55
Message-ID: <v13p9h$phf4$1@dont-email.me>
References: <v12pgu$im12$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 04 May 2024 00:42:58 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="2d5b94937ab75d91202558453b5391e6";
logging-data="837092"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+coYzoCL+sjBRPbmLrM7SE"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:iRwAsN6sPuJFGOB5riTIBGXKSwQ=
Content-Language: en-US
In-Reply-To: <v12pgu$im12$1@dont-email.me>
 by: olcott - Fri, 3 May 2024 22:42 UTC

On 5/3/2024 8:40 AM, olcott wrote:
> 00 int H(ptr x, ptr x)  // ptr is pointer to int function
> 01 int D(ptr x)
> 02 {
> 03   int Halt_Status = H(x, x);
> 04   if (Halt_Status)
> 05     HERE: goto HERE;
> 06   return Halt_Status;
> 07 }
> 08
> 09 void main()
> 10 {
> 11   H(D,D);
> 12 }
>
> We are examining the behavior of D(D) for every possible H/D pair
> where 1 to N steps of D(D) are simulated by H.
>
> *Execution Trace*
> Line 11: main() invokes H(D,D) that simulates 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.
>
> (a) It is a verified fact that for every possible H/D pair where
> 1 to N steps of D(D) are simulated by H that this simulated D(D)
> cannot possibly reach past its own line 03.

Since everyone is denying these facts on the basis that no one
here has a clue about what execution traces are and how they work
it makes no sense to go to the next step.

>
> (b) Rebuttals must show a counter example where 1 to N steps
> of D(D) are simulated by H and the simulated D(D) reaches past
> its own line 03.
>
> *Termination Analyzer H is Not Fooled by Pathological Input D*
> https://www.researchgate.net/publication/369971402_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
>
> *Fully operational code implemented in the x86utm operating system*
> https://github.com/plolcott/x86utm
>
>
>

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

Re: D(D) simulated by H cannot possibly reach past its own line 03

<v13uie$qlvj$1@dont-email.me>

  copy mid

https://news.novabbs.org/devel/article-flat.php?id=58190&group=comp.theory#58190

  copy link   Newsgroups: comp.theory sci.logic
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: polcott333@gmail.com (olcott)
Newsgroups: comp.theory,sci.logic
Subject: Re: D(D) simulated by H cannot possibly reach past its own line 03
Date: Fri, 3 May 2024 19:13:02 -0500
Organization: A noiseless patient Spider
Lines: 57
Message-ID: <v13uie$qlvj$1@dont-email.me>
References: <v12pgu$im12$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 04 May 2024 02:13:03 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="2d5b94937ab75d91202558453b5391e6";
logging-data="874483"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/s9Jq+T/hXoAoyq+VP00eI"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:0e4Z58FCmujvApweBjItyO9TOcA=
In-Reply-To: <v12pgu$im12$1@dont-email.me>
Content-Language: en-US
 by: olcott - Sat, 4 May 2024 00:13 UTC

On 5/3/2024 8:40 AM, olcott wrote:
> 00 int H(ptr x, ptr x)  // ptr is pointer to int function
> 01 int D(ptr x)
> 02 {
> 03   int Halt_Status = H(x, x);
> 04   if (Halt_Status)
> 05     HERE: goto HERE;
> 06   return Halt_Status;
> 07 }
> 08
> 09 void main()
> 10 {
> 11   H(D,D);
> 12 }
>
> We are examining the behavior of D(D) for every possible H/D pair
> where 1 to N steps of D(D) are simulated by H.
>
> *Execution Trace*
> Line 11: main() invokes H(D,D) that simulates 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.
>
> (a) It is a verified fact that for every possible H/D pair where
> 1 to N steps of D(D) are simulated by H that this simulated D(D)
> cannot possibly reach past its own line 03.
>

I only had to add this new step because I found that some people just
do not understand that when the executed H(D,D) aborts its simulated
input that all of the nested simulations (if any) immediately totally
stop running. No simulated H ever returns any value to any simulated D.
We can sum this up much more concisely with (a).

> (b) Rebuttals must show a counter example where 1 to N steps
> of D(D) are simulated by H and the simulated D(D) reaches past
> its own line 03.
>
> *Termination Analyzer H is Not Fooled by Pathological Input D*
> https://www.researchgate.net/publication/369971402_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
>
> *Fully operational code implemented in the x86utm operating system*
> https://github.com/plolcott/x86utm
>
>
>

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

Re: D(D) simulated by H cannot possibly reach past its own line 03

<v14915$c31$12@i2pn2.org>

  copy mid

https://news.novabbs.org/devel/article-flat.php?id=58191&group=comp.theory#58191

  copy link   Newsgroups: comp.theory sci.logic
Path: i2pn2.org!.POSTED!not-for-mail
From: richard@damon-family.org (Richard Damon)
Newsgroups: comp.theory,sci.logic
Subject: Re: D(D) simulated by H cannot possibly reach past its own line 03
Date: Fri, 3 May 2024 23:11:33 -0400
Organization: i2pn2 (i2pn.org)
Message-ID: <v14915$c31$12@i2pn2.org>
References: <v12pgu$im12$1@dont-email.me> <v13p9h$phf4$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 4 May 2024 03:11:33 -0000 (UTC)
Injection-Info: i2pn2.org;
logging-data="12385"; mail-complaints-to="usenet@i2pn2.org";
posting-account="diqKR1lalukngNWEqoq9/uFtbkm5U+w3w6FQ0yesrXg";
User-Agent: Mozilla Thunderbird
Content-Language: en-US
In-Reply-To: <v13p9h$phf4$1@dont-email.me>
X-Spam-Checker-Version: SpamAssassin 4.0.0
 by: Richard Damon - Sat, 4 May 2024 03:11 UTC

On 5/3/24 6:42 PM, olcott wrote:
> On 5/3/2024 8:40 AM, olcott wrote:
>> 00 int H(ptr x, ptr x)  // ptr is pointer to int function
>> 01 int D(ptr x)
>> 02 {
>> 03   int Halt_Status = H(x, x);
>> 04   if (Halt_Status)
>> 05     HERE: goto HERE;
>> 06   return Halt_Status;
>> 07 }
>> 08
>> 09 void main()
>> 10 {
>> 11   H(D,D);
>> 12 }
>>
>> We are examining the behavior of D(D) for every possible H/D pair
>> where 1 to N steps of D(D) are simulated by H.
>>
>> *Execution Trace*
>> Line 11: main() invokes H(D,D) that simulates 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.
>>
>> (a) It is a verified fact that for every possible H/D pair where
>> 1 to N steps of D(D) are simulated by H that this simulated D(D)
>> cannot possibly reach past its own line 03.
>
> Since everyone is denying these facts on the basis that no one
> here has a clue about what execution traces are and how they work
> it makes no sense to go to the next step.

(a) has been proven incorrect.

If you won't make the effort to try to refute that proof, you are just
admitting that you are not interested in an honest dialog.

Of course people won't accept a step that is known to be incorrect.

If you won't handle the objections, YOU are the one holding up your
progress.

>
>>
>> (b) Rebuttals must show a counter example where 1 to N steps
>> of D(D) are simulated by H and the simulated D(D) reaches past
>> its own line 03.

Which it was.

>>
>> *Termination Analyzer H is Not Fooled by Pathological Input D*
>> https://www.researchgate.net/publication/369971402_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
>>
>> *Fully operational code implemented in the x86utm operating system*
>> https://github.com/plolcott/x86utm
>>
>>
>>
>

Re: D(D) simulated by H cannot possibly reach past its own line 03

<v149pv$c31$13@i2pn2.org>

  copy mid

https://news.novabbs.org/devel/article-flat.php?id=58193&group=comp.theory#58193

  copy link   Newsgroups: comp.theory sci.logic
Path: i2pn2.org!.POSTED!not-for-mail
From: richard@damon-family.org (Richard Damon)
Newsgroups: comp.theory,sci.logic
Subject: Re: D(D) simulated by H cannot possibly reach past its own line 03
Date: Fri, 3 May 2024 23:24:47 -0400
Organization: i2pn2 (i2pn.org)
Message-ID: <v149pv$c31$13@i2pn2.org>
References: <v12pgu$im12$1@dont-email.me> <v13uie$qlvj$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 4 May 2024 03:24:47 -0000 (UTC)
Injection-Info: i2pn2.org;
logging-data="12385"; mail-complaints-to="usenet@i2pn2.org";
posting-account="diqKR1lalukngNWEqoq9/uFtbkm5U+w3w6FQ0yesrXg";
User-Agent: Mozilla Thunderbird
Content-Language: en-US
In-Reply-To: <v13uie$qlvj$1@dont-email.me>
X-Spam-Checker-Version: SpamAssassin 4.0.0
 by: Richard Damon - Sat, 4 May 2024 03:24 UTC

On 5/3/24 8:13 PM, olcott wrote:
> On 5/3/2024 8:40 AM, olcott wrote:
>> 00 int H(ptr x, ptr x)  // ptr is pointer to int function
>> 01 int D(ptr x)
>> 02 {
>> 03   int Halt_Status = H(x, x);
>> 04   if (Halt_Status)
>> 05     HERE: goto HERE;
>> 06   return Halt_Status;
>> 07 }
>> 08
>> 09 void main()
>> 10 {
>> 11   H(D,D);
>> 12 }
>>
>> We are examining the behavior of D(D) for every possible H/D pair
>> where 1 to N steps of D(D) are simulated by H.
>>
>> *Execution Trace*
>> Line 11: main() invokes H(D,D) that simulates 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.
>>
>> (a) It is a verified fact that for every possible H/D pair where
>> 1 to N steps of D(D) are simulated by H that this simulated D(D)
>> cannot possibly reach past its own line 03.
>>
>
> I only had to add this new step because I found that some people just
> do not understand that when the executed H(D,D) aborts its simulated
> input that all of the nested simulations (if any) immediately totally
> stop running. No simulated H ever returns any value to any simulated D.
> We can sum this up much more concisely with (a).

Fixing definitions is good.

The refutation of (a) that I gave didn't use that "loop hole" and both
of the examples actually simulated the steps to past line 3.

After all, how can you simulate past line 3 and not simulate any steps?

The no-simulation case was just showing that using your conclusion from
(a) and saying that H is correct to abort here, allows, with just as
valid of logic, to allow a decider to trivally decide to abort either
after 0, or with your modification, after 1 step, to just abort and say
it couldn't reach the end.

>
>> (b) Rebuttals must show a counter example where 1 to N steps
>> of D(D) are simulated by H and the simulated D(D) reaches past
>> its own line 03.

Was done.

You need to refute that example or you are just admitting you are a liar
that makes claims that have been disproven.

The fact that you don't understand how it was disproven, the fact that
you know that the statements were made and you haven't refuted it, means
your claims have become unproven statements, and thus not valid to claim.

>>
>> *Termination Analyzer H is Not Fooled by Pathological Input D*
>> https://www.researchgate.net/publication/369971402_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
>>
>> *Fully operational code implemented in the x86utm operating system*
>> https://github.com/plolcott/x86utm
>>
>>
>>
>

Re: D(D) simulated by H cannot possibly reach past its own line 03

<v146n2$101vl$1@dont-email.me>

  copy mid

https://news.novabbs.org/devel/article-flat.php?id=58196&group=comp.theory#58196

  copy link   Newsgroups: comp.theory sci.logic
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: polcott333@gmail.com (olcott)
Newsgroups: comp.theory,sci.logic
Subject: Re: D(D) simulated by H cannot possibly reach past its own line 03
Date: Fri, 3 May 2024 21:32:02 -0500
Organization: A noiseless patient Spider
Lines: 81
Message-ID: <v146n2$101vl$1@dont-email.me>
References: <v12pgu$im12$1@dont-email.me> <v13mdn$30j8u$1@i2pn2.org>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 04 May 2024 04:32:03 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="2d5b94937ab75d91202558453b5391e6";
logging-data="1050613"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18i6WyZwm4+CNF7td7iV0Pi"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:g+7Su7A3QfVw2qwyTMXzVKvJFis=
In-Reply-To: <v13mdn$30j8u$1@i2pn2.org>
Content-Language: en-US
 by: olcott - Sat, 4 May 2024 02:32 UTC

On 5/3/2024 4:53 PM, Richard Damon wrote:
> On 5/3/24 9:40 AM, olcott wrote:
>> 00 int H(ptr x, ptr x)  // ptr is pointer to int function
>> 01 int D(ptr x)
>> 02 {
>> 03   int Halt_Status = H(x, x);
>> 04   if (Halt_Status)
>> 05     HERE: goto HERE;
>> 06   return Halt_Status;
>> 07 }
>> 08
>> 09 void main()
>> 10 {
>> 11   H(D,D);
>> 12 }
>>
>> We are examining the behavior of D(D) for every possible H/D pair
>> where 1 to N steps of D(D) are simulated by H.
>>
>> *Execution Trace*
>> Line 11: main() invokes H(D,D) that simulates 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.
>>
>> (a) It is a verified fact that for every possible H/D pair where
>> 1 to N steps of D(D) are simulated by H that this simulated D(D)
>> cannot possibly reach past its own line 03.
>
> Nope.
>

*This only requires knowing two things*
(1) What an execution trace is and how it works.
You seem to know that other people here do not.

(2) When the executed H(D,D) aborts its simulated input
that all of the nested simulations (if any) immediately
totally stop running. No simulated H ever returns any value
to any simulated D.

*This seems to be over your head and you don't know it*

>>
>> (b) Rebuttals must show a counter example where 1 to N steps
>> of D(D) are simulated by H and the simulated D(D) reaches past
>> its own line 03.
>
> WAS DONE.
>
>>
>> *Termination Analyzer H is Not Fooled by Pathological Input D*
>> https://www.researchgate.net/publication/369971402_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
>>
>> *Fully operational code implemented in the x86utm operating system*
>> https://github.com/plolcott/x86utm
>>
>>
>>
>
> Proven wrong, and you have declined to try to refute that proof.
>
> If you claim I haven't done this, make a clear statement of that claim,
> with a clear statement that if I can point out where I did this, and you
> failed to respond, you will admit that you are just wrong and will admit
> that you logic is just broken and will give up the statement that people
> haven't refuted you.
>
> Unitl then, you have effectively conceded that you statement is just
> FALSE, and your repeating it is just demonstration that are just a
> pathological liar that doesn't understand what he is talking abour.

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

Re: D(D) simulated by H cannot possibly reach past its own line 03

<v14alr$10p7a$1@dont-email.me>

  copy mid

https://news.novabbs.org/devel/article-flat.php?id=58198&group=comp.theory#58198

  copy link   Newsgroups: comp.theory sci.logic
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: polcott333@gmail.com (olcott)
Newsgroups: comp.theory,sci.logic
Subject: Re: D(D) simulated by H cannot possibly reach past its own line 03
Date: Fri, 3 May 2024 22:39:39 -0500
Organization: A noiseless patient Spider
Lines: 113
Message-ID: <v14alr$10p7a$1@dont-email.me>
References: <v12pgu$im12$1@dont-email.me> <v13uie$qlvj$1@dont-email.me>
<v149pv$c31$13@i2pn2.org>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 04 May 2024 05:39:40 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="2d5b94937ab75d91202558453b5391e6";
logging-data="1074410"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/Gef7sgxnW4/pE0dPhzu7a"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:ICWvrz6LjeKTpCFxCK158LZJHsU=
Content-Language: en-US
In-Reply-To: <v149pv$c31$13@i2pn2.org>
 by: olcott - Sat, 4 May 2024 03:39 UTC

On 5/3/2024 10:24 PM, Richard Damon wrote:
> On 5/3/24 8:13 PM, olcott wrote:
>> On 5/3/2024 8:40 AM, olcott wrote:
>>> 00 int H(ptr x, ptr x)  // ptr is pointer to int function
>>> 01 int D(ptr x)
>>> 02 {
>>> 03   int Halt_Status = H(x, x);
>>> 04   if (Halt_Status)
>>> 05     HERE: goto HERE;
>>> 06   return Halt_Status;
>>> 07 }
>>> 08
>>> 09 void main()
>>> 10 {
>>> 11   H(D,D);
>>> 12 }
>>>
>>> We are examining the behavior of D(D) for every possible H/D pair
>>> where 1 to N steps of D(D) are simulated by H.
>>>
>>> *Execution Trace*
>>> Line 11: main() invokes H(D,D) that simulates 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.
>>>
>>> (a) It is a verified fact that for every possible H/D pair where
>>> 1 to N steps of D(D) are simulated by H that this simulated D(D)
>>> cannot possibly reach past its own line 03.
>>>
>>
>> I only had to add this new step because I found that some people just
>> do not understand that when the executed H(D,D) aborts its simulated
>> input that all of the nested simulations (if any) immediately totally
>> stop running. No simulated H ever returns any value to any simulated D.
>> We can sum this up much more concisely with (a).
>
> Fixing definitions is good.
>
> The refutation of (a) that I gave didn't use that "loop hole" and both
> of the examples actually simulated the steps to past line 3.
>
> After all, how can you simulate past line 3 and not simulate any steps?
>

THIS WAS THE DEFINITION THAT YOU RESPONDED TO
(a) It is a verified fact that *D(D) simulated by H* cannot
possibly reach past line 03 of *D(D) simulated by H* whether
H aborts its simulation or not.

You took *D(D) simulated by H* to mean *D(D) NEVER simulated by H*
That is a ridiculously stupid mistake.

You took *D(D) simulated by H* to mean *D(D) NEVER simulated by H*
That is a ridiculously stupid mistake.

You took *D(D) simulated by H* to mean *D(D) NEVER simulated by H*
That is a ridiculously stupid mistake.

You took *D(D) simulated by H* to mean *D(D) NEVER simulated by H*
That is a ridiculously stupid mistake.

> The no-simulation case was just showing that using your conclusion from
> (a) and saying that H is correct to abort here, allows, with just as
> valid of logic, to allow a decider to trivally decide to abort either
> after 0, or with your modification, after 1 step, to just abort and say
> it couldn't reach the end.
>
>>
>>> (b) Rebuttals must show a counter example where 1 to N steps
>>> of D(D) are simulated by H and the simulated D(D) reaches past
>>> its own line 03.
>
> Was done.
>
> You need to refute that example or you are just admitting you are a liar
> that makes claims that have been disproven.
>

No I am proving that one of your rebuttals was a ridiculously stupid
mistake. When you make a ridiculously stupid mistake that is not me
lying at all.

If you have a better rebuttal please provide it.

> The fact that you don't understand how it was disproven, the fact that
> you know that the statements were made and you haven't refuted it, means
> your claims have become unproven statements, and thus not valid to claim.
>

*It was not me that made the ridiculously stupid mistake*

>>>
>>> *Termination Analyzer H is Not Fooled by Pathological Input D*
>>> https://www.researchgate.net/publication/369971402_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
>>>
>>> *Fully operational code implemented in the x86utm operating system*
>>> https://github.com/plolcott/x86utm
>>>
>>>
>>>
>>
>

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

Re: D(D) simulated by H cannot possibly reach past its own line 03

<v13tia$qers$1@dont-email.me>

  copy mid

https://news.novabbs.org/devel/article-flat.php?id=58203&group=comp.theory#58203

  copy link   Newsgroups: comp.theory sci.logic
Path: i2pn2.org!i2pn.org!usenet.network!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: polcott333@gmail.com (olcott)
Newsgroups: comp.theory,sci.logic
Subject: Re: D(D) simulated by H cannot possibly reach past its own line 03
Date: Fri, 3 May 2024 18:55:54 -0500
Organization: A noiseless patient Spider
Lines: 69
Message-ID: <v13tia$qers$1@dont-email.me>
References: <v12pgu$im12$1@dont-email.me> <v13p9h$phf4$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 04 May 2024 01:55:55 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="2d5b94937ab75d91202558453b5391e6";
logging-data="867196"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19cjA4rFlnWHcd0SsPojw4U"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:7DAiemfz3DXTQfIevklNi5qoBnM=
In-Reply-To: <v13p9h$phf4$1@dont-email.me>
Content-Language: en-US
 by: olcott - Fri, 3 May 2024 23:55 UTC

On 5/3/2024 5:42 PM, olcott wrote:
> On 5/3/2024 8:40 AM, olcott wrote:
>> 00 int H(ptr x, ptr x)  // ptr is pointer to int function
>> 01 int D(ptr x)
>> 02 {
>> 03   int Halt_Status = H(x, x);
>> 04   if (Halt_Status)
>> 05     HERE: goto HERE;
>> 06   return Halt_Status;
>> 07 }
>> 08
>> 09 void main()
>> 10 {
>> 11   H(D,D);
>> 12 }
>>
>> We are examining the behavior of D(D) for every possible H/D pair
>> where 1 to N steps of D(D) are simulated by H.
>>
>> *Execution Trace*
>> Line 11: main() invokes H(D,D) that simulates 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.
>>
>> (a) It is a verified fact that for every possible H/D pair where
>> 1 to N steps of D(D) are simulated by H that this simulated D(D)
>> cannot possibly reach past its own line 03.
>
> Since everyone is denying these facts on the basis that no one
> here has a clue about what execution traces are and how they work
> it makes no sense to go to the next step.
>

The next step depends on this prior step and is trivially
entailed by this prior step. When each D simulated by H
of the infinite set of H/D pairs cannot possibly reach past
its own line 03 then it cannot possibly reach its own line
06 and halt.

There is one more software engineering step that depends
on the above steps and is trivially entailed by the above
step. After this last software engineering step we begin
to get into the computer science steps.

>>
>> (b) Rebuttals must show a counter example where 1 to N steps
>> of D(D) are simulated by H and the simulated D(D) reaches past
>> its own line 03.
>>
>> *Termination Analyzer H is Not Fooled by Pathological Input D*
>> https://www.researchgate.net/publication/369971402_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
>>
>> *Fully operational code implemented in the x86utm operating system*
>> https://github.com/plolcott/x86utm
>>
>>
>>
>

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

Re: D(D) simulated by H cannot possibly reach past its own line 03

<v15b78$1m58$3@i2pn2.org>

  copy mid

https://news.novabbs.org/devel/article-flat.php?id=58213&group=comp.theory#58213

  copy link   Newsgroups: comp.theory sci.logic
Path: i2pn2.org!.POSTED!not-for-mail
From: richard@damon-family.org (Richard Damon)
Newsgroups: comp.theory,sci.logic
Subject: Re: D(D) simulated by H cannot possibly reach past its own line 03
Date: Sat, 4 May 2024 08:55:04 -0400
Organization: i2pn2 (i2pn.org)
Message-ID: <v15b78$1m58$3@i2pn2.org>
References: <v12pgu$im12$1@dont-email.me> <v13mdn$30j8u$1@i2pn2.org>
<v146n2$101vl$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 4 May 2024 12:55:04 -0000 (UTC)
Injection-Info: i2pn2.org;
logging-data="55464"; mail-complaints-to="usenet@i2pn2.org";
posting-account="diqKR1lalukngNWEqoq9/uFtbkm5U+w3w6FQ0yesrXg";
User-Agent: Mozilla Thunderbird
X-Spam-Checker-Version: SpamAssassin 4.0.0
Content-Language: en-US
In-Reply-To: <v146n2$101vl$1@dont-email.me>
 by: Richard Damon - Sat, 4 May 2024 12:55 UTC

On 5/3/24 10:32 PM, olcott wrote:
> On 5/3/2024 4:53 PM, Richard Damon wrote:
>> On 5/3/24 9:40 AM, olcott wrote:
>>> 00 int H(ptr x, ptr x)  // ptr is pointer to int function
>>> 01 int D(ptr x)
>>> 02 {
>>> 03   int Halt_Status = H(x, x);
>>> 04   if (Halt_Status)
>>> 05     HERE: goto HERE;
>>> 06   return Halt_Status;
>>> 07 }
>>> 08
>>> 09 void main()
>>> 10 {
>>> 11   H(D,D);
>>> 12 }
>>>
>>> We are examining the behavior of D(D) for every possible H/D pair
>>> where 1 to N steps of D(D) are simulated by H.
>>>
>>> *Execution Trace*
>>> Line 11: main() invokes H(D,D) that simulates 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.
>>>
>>> (a) It is a verified fact that for every possible H/D pair where
>>> 1 to N steps of D(D) are simulated by H that this simulated D(D)
>>> cannot possibly reach past its own line 03.
>>
>> Nope.
>>
>
> *This only requires knowing two things*
> (1) What an execution trace is and how it works.
> You seem to know that other people here do not.

Proven otherwise and ignored by you, proving you are just a pathological
liar.

>
> (2) When the executed H(D,D) aborts its simulated input
> that all of the nested simulations (if any) immediately
> totally stop running. No simulated H ever returns any value
> to any simulated D.
>
> *This seems to be over your head and you don't know it*

Nope, it stops the SIMULATION of all the programs nested in it, but does
not stop the BEHAVIOR of those programs, as that is defined by the
direct execution of it.

This seems over YOUR head.

>
>>>
>>> (b) Rebuttals must show a counter example where 1 to N steps
>>> of D(D) are simulated by H and the simulated D(D) reaches past
>>> its own line 03.
>>
>> WAS DONE.
>>
>>>
>>> *Termination Analyzer H is Not Fooled by Pathological Input D*
>>> https://www.researchgate.net/publication/369971402_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
>>>
>>> *Fully operational code implemented in the x86utm operating system*
>>> https://github.com/plolcott/x86utm
>>>
>>>
>>>
>>
>> Proven wrong, and you have declined to try to refute that proof.
>>
>> If you claim I haven't done this, make a clear statement of that
>> claim, with a clear statement that if I can point out where I did
>> this, and you failed to respond, you will admit that you are just
>> wrong and will admit that you logic is just broken and will give up
>> the statement that people haven't refuted you.
>>
>> Unitl then, you have effectively conceded that you statement is just
>> FALSE, and your repeating it is just demonstration that are just a
>> pathological liar that doesn't understand what he is talking abour.
>

Re: D(D) simulated by H cannot possibly reach past its own line 03

<v15ba6$1m58$4@i2pn2.org>

  copy mid

https://news.novabbs.org/devel/article-flat.php?id=58214&group=comp.theory#58214

  copy link   Newsgroups: comp.theory sci.logic
Path: i2pn2.org!.POSTED!not-for-mail
From: richard@damon-family.org (Richard Damon)
Newsgroups: comp.theory,sci.logic
Subject: Re: D(D) simulated by H cannot possibly reach past its own line 03
Date: Sat, 4 May 2024 08:56:38 -0400
Organization: i2pn2 (i2pn.org)
Message-ID: <v15ba6$1m58$4@i2pn2.org>
References: <v12pgu$im12$1@dont-email.me> <v13p9h$phf4$1@dont-email.me>
<v13tia$qers$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 4 May 2024 12:56:38 -0000 (UTC)
Injection-Info: i2pn2.org;
logging-data="55464"; mail-complaints-to="usenet@i2pn2.org";
posting-account="diqKR1lalukngNWEqoq9/uFtbkm5U+w3w6FQ0yesrXg";
User-Agent: Mozilla Thunderbird
In-Reply-To: <v13tia$qers$1@dont-email.me>
X-Spam-Checker-Version: SpamAssassin 4.0.0
Content-Language: en-US
 by: Richard Damon - Sat, 4 May 2024 12:56 UTC

On 5/3/24 7:55 PM, olcott wrote:
> On 5/3/2024 5:42 PM, olcott wrote:
>> On 5/3/2024 8:40 AM, olcott wrote:
>>> 00 int H(ptr x, ptr x)  // ptr is pointer to int function
>>> 01 int D(ptr x)
>>> 02 {
>>> 03   int Halt_Status = H(x, x);
>>> 04   if (Halt_Status)
>>> 05     HERE: goto HERE;
>>> 06   return Halt_Status;
>>> 07 }
>>> 08
>>> 09 void main()
>>> 10 {
>>> 11   H(D,D);
>>> 12 }
>>>
>>> We are examining the behavior of D(D) for every possible H/D pair
>>> where 1 to N steps of D(D) are simulated by H.
>>>
>>> *Execution Trace*
>>> Line 11: main() invokes H(D,D) that simulates 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.
>>>
>>> (a) It is a verified fact that for every possible H/D pair where
>>> 1 to N steps of D(D) are simulated by H that this simulated D(D)
>>> cannot possibly reach past its own line 03.
>>
>> Since everyone is denying these facts on the basis that no one
>> here has a clue about what execution traces are and how they work
>> it makes no sense to go to the next step.
>>
>
> The next step depends on this prior step and is trivially
> entailed by this prior step. When each D simulated by H
> of the infinite set of H/D pairs cannot possibly reach past
> its own line 03 then it cannot possibly reach its own line
> 06 and halt.
>
> There is one more software engineering step that depends
> on the above steps and is trivially entailed by the above
> step. After this last software engineering step we begin
> to get into the computer science steps.
>

And since that step is wrong, you need to go back and fix it.

Your (a) has been proven INCORRECT, and descriptions of TWO DIFFERENT
methods that an H could use to get past there described.

Your ignoring them just proves you are just a pathological liar.

>>>
>>> (b) Rebuttals must show a counter example where 1 to N steps
>>> of D(D) are simulated by H and the simulated D(D) reaches past
>>> its own line 03.
>>>
>>> *Termination Analyzer H is Not Fooled by Pathological Input D*
>>> https://www.researchgate.net/publication/369971402_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
>>>
>>> *Fully operational code implemented in the x86utm operating system*
>>> https://github.com/plolcott/x86utm
>>>
>>>
>>>
>>
>

Re: D(D) simulated by H cannot possibly reach past its own line 03

<v15bfs$1m58$5@i2pn2.org>

  copy mid

https://news.novabbs.org/devel/article-flat.php?id=58215&group=comp.theory#58215

  copy link   Newsgroups: comp.theory sci.logic
Path: i2pn2.org!.POSTED!not-for-mail
From: richard@damon-family.org (Richard Damon)
Newsgroups: comp.theory,sci.logic
Subject: Re: D(D) simulated by H cannot possibly reach past its own line 03
Date: Sat, 4 May 2024 08:59:40 -0400
Organization: i2pn2 (i2pn.org)
Message-ID: <v15bfs$1m58$5@i2pn2.org>
References: <v12pgu$im12$1@dont-email.me> <v13uie$qlvj$1@dont-email.me>
<v149pv$c31$13@i2pn2.org> <v14alr$10p7a$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 4 May 2024 12:59:40 -0000 (UTC)
Injection-Info: i2pn2.org;
logging-data="55464"; mail-complaints-to="usenet@i2pn2.org";
posting-account="diqKR1lalukngNWEqoq9/uFtbkm5U+w3w6FQ0yesrXg";
User-Agent: Mozilla Thunderbird
X-Spam-Checker-Version: SpamAssassin 4.0.0
Content-Language: en-US
In-Reply-To: <v14alr$10p7a$1@dont-email.me>
 by: Richard Damon - Sat, 4 May 2024 12:59 UTC

On 5/3/24 11:39 PM, olcott wrote:
> On 5/3/2024 10:24 PM, Richard Damon wrote:
>> On 5/3/24 8:13 PM, olcott wrote:
>>> On 5/3/2024 8:40 AM, olcott wrote:
>>>> 00 int H(ptr x, ptr x)  // ptr is pointer to int function
>>>> 01 int D(ptr x)
>>>> 02 {
>>>> 03   int Halt_Status = H(x, x);
>>>> 04   if (Halt_Status)
>>>> 05     HERE: goto HERE;
>>>> 06   return Halt_Status;
>>>> 07 }
>>>> 08
>>>> 09 void main()
>>>> 10 {
>>>> 11   H(D,D);
>>>> 12 }
>>>>
>>>> We are examining the behavior of D(D) for every possible H/D pair
>>>> where 1 to N steps of D(D) are simulated by H.
>>>>
>>>> *Execution Trace*
>>>> Line 11: main() invokes H(D,D) that simulates 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.
>>>>
>>>> (a) It is a verified fact that for every possible H/D pair where
>>>> 1 to N steps of D(D) are simulated by H that this simulated D(D)
>>>> cannot possibly reach past its own line 03.
>>>>
>>>
>>> I only had to add this new step because I found that some people just
>>> do not understand that when the executed H(D,D) aborts its simulated
>>> input that all of the nested simulations (if any) immediately totally
>>> stop running. No simulated H ever returns any value to any simulated D.
>>> We can sum this up much more concisely with (a).
>>
>> Fixing definitions is good.
>>
>> The refutation of (a) that I gave didn't use that "loop hole" and both
>> of the examples actually simulated the steps to past line 3.
>>
>> After all, how can you simulate past line 3 and not simulate any steps?
>>
>
> THIS WAS THE DEFINITION THAT YOU RESPONDED TO
> (a) It is a verified fact that *D(D) simulated by H* cannot
> possibly reach past line 03 of *D(D) simulated by H* whether
> H aborts its simulation or not.
>
> You took *D(D) simulated by H* to mean *D(D) NEVER simulated by H*
> That is a ridiculously stupid mistake.
>
> You took *D(D) simulated by H* to mean *D(D) NEVER simulated by H*
> That is a ridiculously stupid mistake.
>
> You took *D(D) simulated by H* to mean *D(D) NEVER simulated by H*
> That is a ridiculously stupid mistake.
>
> You took *D(D) simulated by H* to mean *D(D) NEVER simulated by H*
> That is a ridiculously stupid mistake.

You are looking at the wrong case and don't even seem to understand what
I was saying,

THAT example actually took your assumption that (a) was true, and
thought, based on this statement being true, what can I show, and I
showed that you can make a valid H that calls almost every input to be
non-halting.

You donn't seem to actually understand how logic works.

>
>> The no-simulation case was just showing that using your conclusion
>> from (a) and saying that H is correct to abort here, allows, with just
>> as valid of logic, to allow a decider to trivally decide to abort
>> either after 0, or with your modification, after 1 step, to just abort
>> and say it couldn't reach the end.
>>
>>>
>>>> (b) Rebuttals must show a counter example where 1 to N steps
>>>> of D(D) are simulated by H and the simulated D(D) reaches past
>>>> its own line 03.
>>
>> Was done.
>>
>> You need to refute that example or you are just admitting you are a
>> liar that makes claims that have been disproven.
>>
>
> No I am proving that one of your rebuttals was a ridiculously stupid
> mistake. When you make a ridiculously stupid mistake that is not me
> lying at all.

But you need to prove that ALL my rebuttals don't work.

>
> If you have a better rebuttal please provide it.

I did. You ignored it.

>
>> The fact that you don't understand how it was disproven, the fact that
>> you know that the statements were made and you haven't refuted it,
>> means your claims have become unproven statements, and thus not valid
>> to claim.
>>
>
> *It was not me that made the ridiculously stupid mistake*

Yep, it was.

>
>>>>
>>>> *Termination Analyzer H is Not Fooled by Pathological Input D*
>>>> https://www.researchgate.net/publication/369971402_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
>>>>
>>>> *Fully operational code implemented in the x86utm operating system*
>>>> https://github.com/plolcott/x86utm
>>>>
>>>>
>>>>
>>>
>>
>


devel / comp.theory / D(D) simulated by H cannot possibly reach past its own line 03

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor