Re: Can someone please verify the execution trace of this?

Liste des GroupesRevenir à l c 
Sujet : Re: Can someone please verify the execution trace of this?
De : wyniijj5 (at) *nospam* gmail.com (wij)
Groupes : comp.lang.c++
Date : 20. May 2024, 14:37:53
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <eaa0ef93ca03f744edc4fbcf6e79fc730805cce9.camel@gmail.com>
References : 1 2 3 4 5
User-Agent : Evolution 3.50.2 (3.50.2-1.fc39)
On Sun, 2024-05-19 at 21:43 -0500, olcott wrote:
On 5/19/2024 8:52 PM, Bonita Montero wrote:
Am 19.05.2024 um 21:00 schrieb olcott:
On 5/19/2024 1:08 PM, Bonita Montero wrote:
Am 18.05.2024 um 23:40 schrieb olcott:
People are saying that they have no idea what this code does
because they do not believe it conforms to c11 or c17.
 
typedef int (*ptr)();  // ptr is pointer to int function
00 int H(ptr x, ptr y);
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   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.
 
The key thing to note is that no D correctly simulated by any H of
every
H/D pair specified by the above template ever reaches its own line 06
and halts.
 
 
Other people think 30s about this, you think years about that.
 
 
It is the basis for my two decades long primary research into
termination analysis. People on another forum have written
hundreds of posts claiming that D correctly simulated by H
reaches its own line 06 and halts.
 
*I have only gotten truthful answers on this forum*
 
 
That's not research, that's nonsense.
 
 
This is not the forum to show that it is not nonsense this is
a simple C question that I should not even have to ask except
for a few people in another forum that consistently lie about
the answer.
 
I have been a professional C++ developer since Y2K. So I already
know the answer, I just need some competent people in this forum
to attest to this answer. I met Bjarne Stroustrup back when he
was going around the country promoting his new language.
 

typedef int (*ptr)();  // ptr is pointer to int function
int H(ptr x, ptr y);
int D(ptr x)
{
  int Halt_Status = H(x, x);
  if (Halt_Status)
    HERE: goto HERE;
  return Halt_Status;
}

int main()
{
  H(D,D);
  return 0;
}

The code above does not compile:
1. D does not fit the protocol H accepts --> After there years, you finally
   learn to use typedef but still not seem to understand it.
2. H is not defined --> cannot compile to executable

You are trapped in an infinite recursive call.
You finally know it is an infinite recursive call. But the Halting Problem 
asks for a program to answer the halting question, NOT YOU to answer the
question. According to GUR, even the H were your god, he neither can provide
the correct answer.

Besides, you just posted another proof that you lied again, fake false reports
of what you did and saw, hiding the actual result and tell what you like to
believe. Strictly, this is what all human may do, you are just too stupid. 
The relevant part of your brain is burnt.



Date Sujet#  Auteur
21 Sep 24 o 

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal