Sysop: | Amessyroom |
---|---|
Location: | Fayetteville, NC |
Users: | 23 |
Nodes: | 6 (0 / 6) |
Uptime: | 52:38:54 |
Calls: | 583 |
Files: | 1,139 |
D/L today: |
179 files (27,921K bytes) |
Messages: | 111,617 |
int DD()
{
int Halt_Status = HHH(EE);
if (Halt_Status)
HERE: goto HERE;
return Halt_Status;
}
int EE()
{
int Halt_Status = HHH(EE);
if (Halt_Status)
HERE: goto HERE;
return Halt_Status;
}
int main()
{
Output("Input_Halts = ", HHH(DD));
}
What should HHH(DD) return to main now?
On 2025-08-26 20:10:30 +0000, Richard Heathfield said:
int DD()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int EE()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(DD));
}
What should HHH(DD) return to main now?
The choice of names is not good. The EE above is like Olcott's DD
but the DD above is new. The opposite nameing would have been
better.
On 2025-08-26 20:10:30 +0000, Richard Heathfield said:
int DD()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int EE()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(DD));
}
What should HHH(DD) return to main now?
The choice of names is not good. The EE above is like Olcott's DD
but the DD above is new. The opposite nameing would have been better.
On 8/27/2025 2:33 AM, Mikko wrote:
On 2025-08-26 20:10:30 +0000, Richard Heathfield said:
int DD()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int EE()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(DD));
}
What should HHH(DD) return to main now?
The choice of names is not good. The EE above is like Olcott's DD
but the DD above is new. The opposite nameing would have been better.
That merely adds extraneous complexity that makes
the basic ideas more difficult to understand.
On 27/08/2025 08:33, Mikko wrote:
On 2025-08-26 20:10:30 +0000, Richard Heathfield said:
int DD()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int EE()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(DD));
}
What should HHH(DD) return to main now?
The choice of names is not good. The EE above is like Olcott's DD
but the DD above is new. The opposite nameing would have been better.
I was trying to keep the call from main the same. But okay...
int DD()
{
int Halt_Status = HHH(DD);
if (Halt_Status)
HERE: goto HERE;
return Halt_Status;
}
int FF()
{
int Halt_Status = HHH(DD);
if (Halt_Status)
HERE: goto HERE;
return Halt_Status;
}
int main()
{
Output("Input_Halts = ", HHH(FF));
}
What should HHH(FF) return to main now, and why?
Does HHH() abort FF when it aborts DD (which is part of the FF simulation)?
HHH() must be able to answer this question, because HHH must report.
On 2025-08-27 07:49:20 +0000, Richard Heathfield said:
On 27/08/2025 08:33, Mikko wrote:
On 2025-08-26 20:10:30 +0000, Richard Heathfield said:
int DD()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int EE()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(DD));
}
What should HHH(DD) return to main now?
The choice of names is not good. The EE above is like Olcott's DD
but the DD above is new. The opposite nameing would have been
better.
I was trying to keep the call from main the same. But okay...
int DD()
{
-a-a int Halt_Status = HHH(DD);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int FF()
{
-a-a int Halt_Status = HHH(DD);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(FF));
}
What should HHH(FF) return to main now, and why?
Does HHH() abort FF when it aborts DD (which is part of the FF
simulation)?
HHH() must be able to answer this question, because HHH must
report.
HHH(DD) as implemented returns 0 (which is wrong as DD() halts).
Therefore FF does not halt so HHH(FF) should return 1.
On 2025-08-27 07:49:20 +0000, Richard Heathfield said:
On 27/08/2025 08:33, Mikko wrote:
On 2025-08-26 20:10:30 +0000, Richard Heathfield said:
int DD()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int EE()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(DD));
}
What should HHH(DD) return to main now?
The choice of names is not good. The EE above is like Olcott's DD
but the DD above is new. The opposite nameing would have been better.
I was trying to keep the call from main the same. But okay...
int DD()
{
-a-a int Halt_Status = HHH(DD);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int FF()
{
-a-a int Halt_Status = HHH(DD);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(FF));
}
What should HHH(FF) return to main now, and why?
Does HHH() abort FF when it aborts DD (which is part of the FF
simulation)?
HHH() must be able to answer this question, because HHH must report.
HHH(DD) as implemented returns 0 (which is wrong as DD() halts).
Therefore FF does not halt so HHH(FF) should return 1.
On 8/28/2025 1:57 AM, Mikko wrote:
On 2025-08-27 07:49:20 +0000, Richard Heathfield said:
On 27/08/2025 08:33, Mikko wrote:
On 2025-08-26 20:10:30 +0000, Richard Heathfield said:
int DD()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int EE()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(DD));
}
What should HHH(DD) return to main now?
The choice of names is not good. The EE above is like Olcott's DD
but the DD above is new. The opposite nameing would have been better.
I was trying to keep the call from main the same. But okay...
int DD()
{
-a-a int Halt_Status = HHH(DD);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int FF()
{
-a-a int Halt_Status = HHH(DD);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(FF));
}
What should HHH(FF) return to main now, and why?
Does HHH() abort FF when it aborts DD (which is part of the FF
simulation)?
HHH() must be able to answer this question, because HHH must report.
HHH(DD) as implemented returns 0 (which is wrong as DD() halts).
Therefore FF does not halt so HHH(FF) should return 1.
Clearly you do not understand that all Turing
machine deciders ONLY compute the mapping from
their inputs. I could say that 5 + 7 = 36 by
ignoring the rules of arithmetic.
On 8/28/2025 1:57 AM, Mikko wrote:
On 2025-08-27 07:49:20 +0000, Richard Heathfield said:
On 27/08/2025 08:33, Mikko wrote:
On 2025-08-26 20:10:30 +0000, Richard Heathfield said:
int DD()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int EE()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(DD));
}
What should HHH(DD) return to main now?
The choice of names is not good. The EE above is like Olcott's DD
but the DD above is new. The opposite nameing would have been better.
I was trying to keep the call from main the same. But okay...
int DD()
{
-a-a int Halt_Status = HHH(DD);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int FF()
{
-a-a int Halt_Status = HHH(DD);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(FF));
}
What should HHH(FF) return to main now, and why?
Does HHH() abort FF when it aborts DD (which is part of the FF simulation)? >>>
HHH() must be able to answer this question, because HHH must report.
HHH(DD) as implemented returns 0 (which is wrong as DD() halts).
Therefore FF does not halt so HHH(FF) should return 1.
Clearly you do not understand that all Turing
machine deciders ONLY compute the mapping from
their inputs. I could say that 5 + 7 = 36 by
ignoring the rules of arithmetic.
On 2025-08-28 14:15:34 +0000, olcott said:
On 8/28/2025 1:57 AM, Mikko wrote:
On 2025-08-27 07:49:20 +0000, Richard Heathfield said:
On 27/08/2025 08:33, Mikko wrote:
On 2025-08-26 20:10:30 +0000, Richard Heathfield said:
int DD()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int EE()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(DD));
}
What should HHH(DD) return to main now?
The choice of names is not good. The EE above is like Olcott's DD
but the DD above is new. The opposite nameing would have been better. >>>>>
I was trying to keep the call from main the same. But okay...
int DD()
{
-a-a int Halt_Status = HHH(DD);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int FF()
{
-a-a int Halt_Status = HHH(DD);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(FF));
}
What should HHH(FF) return to main now, and why?
Does HHH() abort FF when it aborts DD (which is part of the FF
simulation)?
HHH() must be able to answer this question, because HHH must report.
HHH(DD) as implemented returns 0 (which is wrong as DD() halts).
Therefore FF does not halt so HHH(FF) should return 1.
Clearly you do not understand that all Turing
machine deciders ONLY compute the mapping from
their inputs. I could say that 5 + 7 = 36 by
ignoring the rules of arithmetic.
It is not a good idea to lie about other people. If you don't know
the truth or don't want to tell it then it is better to say nothing.
On 8/28/2025 1:57 AM, Mikko wrote:
On 2025-08-27 07:49:20 +0000, Richard Heathfield said:
On 27/08/2025 08:33, Mikko wrote:
On 2025-08-26 20:10:30 +0000, Richard Heathfield said:
int DD()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int EE()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(DD));
}
What should HHH(DD) return to main now?
The choice of names is not good. The EE above is like Olcott's DD
but the DD above is new. The opposite nameing would have been better.
I was trying to keep the call from main the same. But okay...
int DD()
{
-a-a int Halt_Status = HHH(DD);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int FF()
{
-a-a int Halt_Status = HHH(DD);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(FF));
}
What should HHH(FF) return to main now, and why?
Does HHH() abort FF when it aborts DD (which is part of the FF
simulation)?
HHH() must be able to answer this question, because HHH must report.
HHH(DD) as implemented returns 0 (which is wrong as DD() halts).
Therefore FF does not halt so HHH(FF) should return 1.
Clearly you do not understand that all Turing
machine deciders ONLY compute the mapping from
their inputs. I could say that 5 + 7 = 36 by
ignoring the rules of arithmetic.
On 8/29/2025 1:51 AM, Mikko wrote:
On 2025-08-28 14:15:34 +0000, olcott said:
On 8/28/2025 1:57 AM, Mikko wrote:
On 2025-08-27 07:49:20 +0000, Richard Heathfield said:
On 27/08/2025 08:33, Mikko wrote:
On 2025-08-26 20:10:30 +0000, Richard Heathfield said:
int DD()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int EE()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(DD));
}
What should HHH(DD) return to main now?
The choice of names is not good. The EE above is like Olcott's DD
but the DD above is new. The opposite nameing would have been better. >>>>>>
I was trying to keep the call from main the same. But okay...
int DD()
{
-a-a int Halt_Status = HHH(DD);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int FF()
{
-a-a int Halt_Status = HHH(DD);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(FF));
}
What should HHH(FF) return to main now, and why?
Does HHH() abort FF when it aborts DD (which is part of the FF
simulation)?
HHH() must be able to answer this question, because HHH must report.
HHH(DD) as implemented returns 0 (which is wrong as DD() halts).
Therefore FF does not halt so HHH(FF) should return 1.
Clearly you do not understand that all Turing
machine deciders ONLY compute the mapping from
their inputs. I could say that 5 + 7 = 36 by
ignoring the rules of arithmetic.
It is not a good idea to lie about other people. If you don't know
the truth or don't want to tell it then it is better to say nothing.
Yet you still continue to prove that you do not understand.
On 8/29/2025 1:51 AM, Mikko wrote:
On 2025-08-28 14:15:34 +0000, olcott said:
On 8/28/2025 1:57 AM, Mikko wrote:
On 2025-08-27 07:49:20 +0000, Richard Heathfield said:
On 27/08/2025 08:33, Mikko wrote:
On 2025-08-26 20:10:30 +0000, Richard Heathfield said:
int DD()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int EE()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(DD));
}
What should HHH(DD) return to main now?
The choice of names is not good. The EE above is like Olcott's DD
but the DD above is new. The opposite nameing would have been better. >>>>>>
I was trying to keep the call from main the same. But okay...
int DD()
{
-a-a int Halt_Status = HHH(DD);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int FF()
{
-a-a int Halt_Status = HHH(DD);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(FF));
}
What should HHH(FF) return to main now, and why?
Does HHH() abort FF when it aborts DD (which is part of the FF simulation)?
HHH() must be able to answer this question, because HHH must report.
HHH(DD) as implemented returns 0 (which is wrong as DD() halts).
Therefore FF does not halt so HHH(FF) should return 1.
Clearly you do not understand that all Turing
machine deciders ONLY compute the mapping from
their inputs. I could say that 5 + 7 = 36 by
ignoring the rules of arithmetic.
It is not a good idea to lie about other people. If you don't know
the truth or don't want to tell it then it is better to say nothing.
Yet you still continue to prove that you do not understand.
On 2025-08-29 13:58:06 +0000, olcott said:
On 8/29/2025 1:51 AM, Mikko wrote:
On 2025-08-28 14:15:34 +0000, olcott said:
On 8/28/2025 1:57 AM, Mikko wrote:
On 2025-08-27 07:49:20 +0000, Richard Heathfield said:
On 27/08/2025 08:33, Mikko wrote:HHH(DD) as implemented returns 0 (which is wrong as DD() halts).
On 2025-08-26 20:10:30 +0000, Richard Heathfield said:
int DD()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int EE()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(DD));
}
What should HHH(DD) return to main now?
The choice of names is not good. The EE above is like Olcott's DD >>>>>>> but the DD above is new. The opposite nameing would have been
better.
I was trying to keep the call from main the same. But okay...
int DD()
{
-a-a int Halt_Status = HHH(DD);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int FF()
{
-a-a int Halt_Status = HHH(DD);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(FF));
}
What should HHH(FF) return to main now, and why?
Does HHH() abort FF when it aborts DD (which is part of the FF
simulation)?
HHH() must be able to answer this question, because HHH must report. >>>>>
Therefore FF does not halt so HHH(FF) should return 1.
Clearly you do not understand that all Turing
machine deciders ONLY compute the mapping from
their inputs. I could say that 5 + 7 = 36 by
ignoring the rules of arithmetic.
It is not a good idea to lie about other people. If you don't know
the truth or don't want to tell it then it is better to say nothing.
Yet you still continue to prove that you do not understand.
As I already said, it is a sin to lie about other people. In these
discussion there is no need to say anything about anybody.
On 8/30/2025 5:16 AM, Mikko wrote:
On 2025-08-29 13:58:06 +0000, olcott said:
On 8/29/2025 1:51 AM, Mikko wrote:
On 2025-08-28 14:15:34 +0000, olcott said:
On 8/28/2025 1:57 AM, Mikko wrote:
On 2025-08-27 07:49:20 +0000, Richard Heathfield said:
On 27/08/2025 08:33, Mikko wrote:HHH(DD) as implemented returns 0 (which is wrong as DD() halts).
On 2025-08-26 20:10:30 +0000, Richard Heathfield said:
int DD()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int EE()
{
-a-a int Halt_Status = HHH(EE);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(DD));
}
What should HHH(DD) return to main now?
The choice of names is not good. The EE above is like Olcott's DD >>>>>>>> but the DD above is new. The opposite nameing would have been better. >>>>>>>>
I was trying to keep the call from main the same. But okay...
int DD()
{
-a-a int Halt_Status = HHH(DD);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int FF()
{
-a-a int Halt_Status = HHH(DD);
-a-a if (Halt_Status)
-a-a-a-a HERE: goto HERE;
-a-a return Halt_Status;
}
int main()
{
-a-a Output("Input_Halts = ", HHH(FF));
}
What should HHH(FF) return to main now, and why?
Does HHH() abort FF when it aborts DD (which is part of the FF simulation)?
HHH() must be able to answer this question, because HHH must report. >>>>>>
Therefore FF does not halt so HHH(FF) should return 1.
Clearly you do not understand that all Turing
machine deciders ONLY compute the mapping from
their inputs. I could say that 5 + 7 = 36 by
ignoring the rules of arithmetic.
It is not a good idea to lie about other people. If you don't know
the truth or don't want to tell it then it is better to say nothing.
Yet you still continue to prove that you do not understand.
As I already said, it is a sin to lie about other people. In these
discussion there is no need to say anything about anybody.
Telling the objective truth is never a lie.