Re: Termination analyzer defined ---OLCOTT IS WRONG !!!

Liste des GroupesRevenir à c theory 
Sujet : Re: Termination analyzer defined ---OLCOTT IS WRONG !!!
De : richard (at) *nospam* damon-family.org (Richard Damon)
Groupes : comp.theory sci.logic
Date : 17. May 2024, 04:29:29
Autres entêtes
Organisation : i2pn2 (i2pn.org)
Message-ID : <v26fe9$18ad7$4@i2pn2.org>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
User-Agent : Mozilla Thunderbird
On 5/16/24 10:21 AM, olcott wrote:
On 5/16/2024 5:02 AM, Mikko wrote:
On 2024-05-15 14:55:26 +0000, olcott said:
>
On 5/15/2024 2:56 AM, Mikko wrote:
On 2024-05-14 14:18:40 +0000, olcott said:
>
On 5/14/2024 4:34 AM, Mikko wrote:
On 2024-05-13 18:07:37 +0000, Jeff Barnett said:
>
On 5/13/2024 3:06 AM, Mikko wrote:
>
Anyway, if an analyzer can never tell whether a program terminates
with every possible input then it is not a termination analyzer.
>
I don't think the above is true in the way you meant it. Recall that the collection of all Turing machines with blank input tapes is the same set of computations as the collection with arbitrary input tapes. It's always possible to take any specific machine, T, and initial tape, I, and produce machine T' with blank initial input tape that is equivalent: T' initially writes I on its tape (say one character output per state in sequence) then continues with the set of states that comprises T.
>
So it is obvious that a termination analyzer (AKA a halt decider) restricted to blank tape problems will do quite nicely and it is also quite obvious that no such entity exists.
>
You only discuss halting decisions with specific inputs. THerefore you say
nothing about termination analyzers and don't show any mistake in my comment.
>
>
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 int main()
10 {
11   H(D,D);
12 }
>
In any case you diverged away form the whole point of this thread.
Richard is wrong when he says that there exists an H/D pair such
that D simulated by H ever reaches past its own line 03.
>
The main topic (per OP) is the definition of "termination analyzer".
Whether someone is wrong about aomeone else is a secondary topic if
a topic at all, and pretty poitless anyway.
>
>
One can analyze whether a specific program will halt with a specific
input.
>
True but irrelevant. A termination analyser analyses a program without
any knowledge about specific inputs.
>
 *If the halting problem is refuted by this then IT IS NOT IRRELEVANT*
 
But the halting problem isn't refuted by this, as you have admitted you are not working on the hatling problem, but on your POOP, because you admit to changing the defintions.

We are merely haggling over what to call it, not that the idea is
of no value. H is a termination analyzer that correctly analyzes whether
or not a certain set of C function/input pairs will halt. Here are two
examples:
 void Infinite_Recursion(u32 N)
{
   Infinite_Recursion(N);
}
 int factorial(int n)
{
   if (n >= 1)
     return n*factorial(n-1);
   else
     return 1;
}
  

Date Sujet#  Auteur
11 May 24 * Termination analyzer defined74olcott
11 May 24 +* Re: Termination analyzer defined17olcott
11 May 24 i`* Re: Termination analyzer defined16Richard Damon
11 May 24 i `* Re: Termination analyzer defined15olcott
11 May 24 i  `* Re: Termination analyzer defined14Richard Damon
11 May 24 i   +* Re: Termination analyzer defined7olcott
11 May 24 i   i`* Re: Termination analyzer defined6Richard Damon
11 May 24 i   i +* Re: Termination analyzer defined2olcott
11 May 24 i   i i`- Re: Termination analyzer defined1Richard Damon
11 May 24 i   i `* Re: Termination analyzer defined3olcott
11 May 24 i   i  +- Re: Termination analyzer defined1olcott
11 May 24 i   i  `- Re: Termination analyzer defined1Richard Damon
11 May 24 i   `* Re: Termination analyzer defined6olcott
11 May 24 i    `* Re: Termination analyzer defined5Richard Damon
11 May 24 i     +* Re: Termination analyzer defined2olcott
11 May 24 i     i`- Re: Termination analyzer defined1Richard Damon
11 May 24 i     `* Re: Termination analyzer defined2olcott
11 May 24 i      `- Re: Termination analyzer defined1Richard Damon
11 May 24 +* Re: Termination analyzer defined9Richard Damon
11 May 24 i`* Re: Termination analyzer defined8olcott
11 May 24 i `* Re: Termination analyzer defined7Richard Damon
11 May 24 i  `* Re: Termination analyzer defined6olcott
11 May 24 i   `* Re: Termination analyzer defined5Richard Damon
11 May 24 i    `* Re: Termination analyzer defined4olcott
11 May 24 i     `* Re: Termination analyzer defined3Richard Damon
11 May 24 i      `* Re: Termination analyzer defined2olcott
11 May 24 i       `- Re: Termination analyzer defined1Richard Damon
11 May 24 +* Re: Termination analyzer defined3Fred. Zwarts
11 May 24 i`* Re: Termination analyzer defined2olcott
11 May 24 i `- Re: Termination analyzer defined1Richard Damon
11 May 24 +* Re: Termination analyzer defined43Mikko
11 May 24 i`* Re: Termination analyzer defined ---RICHARD IS WRONG !!!42olcott
11 May 24 i +- Re: Termination analyzer defined ---RICHARD IS WRONG !!!1Richard Damon
12 May 24 i `* Re: Termination analyzer defined ---RICHARD IS WRONG !!!40Mikko
12 May 24 i  `* Re: Termination analyzer defined ---RICHARD IS WRONG !!!39olcott
12 May 24 i   +* Re: Termination analyzer defined ---RICHARD IS WRONG !!!37Mikko
12 May 24 i   i`* Re: Termination analyzer defined ---RICHARD IS WRONG !!!36olcott
12 May 24 i   i +- Re: Termination analyzer defined ---RICHARD IS WRONG !!!1Richard Damon
13 May 24 i   i `* Re: Termination analyzer defined ---RICHARD IS WRONG !!!34Mikko
13 May 24 i   i  +* Re: Termination analyzer defined ---RICHARD IS WRONG !!!20olcott
14 May 24 i   i  i`* Re: Termination analyzer defined ---RICHARD IS WRONG !!!19Mikko
14 May 24 i   i  i `* Re: Termination analyzer defined ---RICHARD IS WRONG !!!18olcott
15 May 24 i   i  i  `* Re: Termination analyzer defined ---RICHARD IS WRONG !!!17Mikko
15 May 24 i   i  i   `* Re: Termination analyzer defined ---RICHARD IS WRONG !!!16olcott
16 May 24 i   i  i    +- Re: Termination analyzer defined ---OLCOTT IS WRONG !!!1Richard Damon
16 May 24 i   i  i    `* Re: Termination analyzer defined ---RICHARD IS WRONG !!!14Mikko
16 May 24 i   i  i     `* Re: Termination analyzer defined ---RICHARD IS WRONG !!!13olcott
17 May 24 i   i  i      +* Re: Termination analyzer defined ---RICHARD IS WRONG !!!9Mikko
17 May 24 i   i  i      i`* Re: Termination analyzer defined ---RICHARD IS WRONG !!!8olcott
18 May 24 i   i  i      i +- Re: Termination analyzer defined ---OLCOTT IS WRONG !!!1Richard Damon
18 May 24 i   i  i      i `* Re: Termination analyzer defined ---RICHARD IS WRONG !!!6Mikko
18 May 24 i   i  i      i  `* Re: Termination analyzer defined ---RICHARD IS WRONG !!!5olcott
18 May 24 i   i  i      i   +- Re: Termination analyzer defined ---RICHARD IS WRONG !!!1Richard Damon
19 May 24 i   i  i      i   `* Re: Termination analyzer defined ---RICHARD IS WRONG !!!3Mikko
19 May 24 i   i  i      i    `* Re: Termination analyzer defined ---RICHARD IS WRONG !!!2olcott
19 May 24 i   i  i      i     `- Re: Termination analyzer defined ---OLCOTT IS A LIAR !!!1Richard Damon
18 May 24 i   i  i      `* Re: Termination analyzer defined ---RICHARD IS WRONG !!!3immibis
18 May 24 i   i  i       `* Re: Termination analyzer defined ---RICHARD IS WRONG !!!2olcott
18 May 24 i   i  i        `- Re: Termination analyzer defined ---RICHARD IS WRONG !!!1Richard Damon
13 May 24 i   i  `* Re: Termination analyzer defined ---RICHARD IS WRONG !!!13Jeff Barnett
14 May 24 i   i   `* Re: Termination analyzer defined ---RICHARD IS WRONG !!!12Mikko
14 May 24 i   i    +- Re: Termination analyzer defined ---RICHARD IS WRONG !!!1olcott
14 May 24 i   i    +* Re: Termination analyzer defined ---RICHARD IS WRONG !!!9olcott
15 May 24 i   i    i+- Re: Termination analyzer defined ---OLCOTT IS A LIAR !!!1Richard Damon
15 May 24 i   i    i`* Re: Termination analyzer defined ---RICHARD IS WRONG !!!7Mikko
15 May 24 i   i    i `* Re: Termination analyzer defined ---RICHARD IS WRONG !!!6olcott
16 May 24 i   i    i  +- Re: Termination analyzer defined ---OLCOTT IS WRONG !!!1Richard Damon
16 May 24 i   i    i  `* Re: Termination analyzer defined ---RICHARD IS WRONG !!!4Mikko
16 May 24 i   i    i   `* Re: Termination analyzer defined ---RICHARD IS WRONG !!!3olcott
17 May 24 i   i    i    +- Re: Termination analyzer defined ---OLCOTT IS WRONG !!!1Richard Damon
17 May 24 i   i    i    `- Re: Termination analyzer defined ---RICHARD IS WRONG !!!1Mikko
14 May 24 i   i    `- Re: Termination analyzer defined ---RICHARD IS WRONG !!!1Jeff Barnett
12 May 24 i   `- Re: Termination analyzer defined ---OLCOTT IS WRONG !!!1Richard Damon
13 May 24 `- Re: Termination analyzer defined1immibis

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal