This is the only new material that sums up the
essence of what a simulating termination analyzer is.
Termination Analyzer HHH simulates its input until
it detects a non-terminating behavior pattern. When
HHH detects such a pattern it aborts its simulation
and returns 0.
All of the follows is simply cut-and-paste from my paper
except that I added DDD(DDD) call in main(). https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e
Simulating Termination Analyzer H is Not Fooled by Pathological Input D https://www.researchgate.net/ publication/369971402_Simulating_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D
Everything below is verbatim cut-and-paste from my above paper.
typedef void (*ptr)();
int HHH(ptr P);
void Infinite_Recursion()
{
Infinite_Recursion();
}
void DDD()
{
HHH(DDD);
return;
}
int main()
{
HHH(Infinite_Recursion);
HHH(DDD);
DDD(DDD);
}
Every C programmer that knows that when HHH emulates the machine
language of, Infinite_Recursion it must abort this emulation so that
itself can terminate normally.
When this is construed as non-halting criteria then simulating
termination analyzer HHH is correct to reject this input as non-halting
by returning 0 to its caller.
We get the same repetitive pattern when DDD is correctly emulated by
HHH. HHH emulates DDD that calls HHH(DDD) to do this again.
Do the function calls from main() return to main() ?
On 10/20/2024 2:13 PM, Richard Damon wrote:Why don't the nested HHHs abort?
On 10/20/24 1:33 PM, olcott wrote:If your try to get away with telling ChatGPT that it will explain your
This is the only new material that sums up the essence of what aBut for the pattern that it detects to be correct, it must be that all
simulating termination analyzer is.
Termination Analyzer HHH simulates its input until it detects a
non-terminating behavior pattern. When HHH detects such a pattern it
aborts its simulation and returns 0.
input that exhibit that pattern must never halt when run.
error in great detail as it already does when I brought that up. https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e
On 10/20/2024 2:13 PM, Richard Damon wrote:
On 10/20/24 1:33 PM, olcott wrote:
This is the only new material that sums up the
essence of what a simulating termination analyzer is.
Termination Analyzer HHH simulates its input until
it detects a non-terminating behavior pattern. When
HHH detects such a pattern it aborts its simulation
and returns 0.
But for the pattern that it detects to be correct, it must be that all
input that exhibit that pattern must never halt when run.
If your try to get away with telling ChatGPT that it
will explain your error in great detail as it already
does when I brought that up.
https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e
On 10/20/2024 4:41 PM, Richard Damon wrote:
On 10/20/24 4:23 PM, olcott wrote:
On 10/20/2024 2:13 PM, Richard Damon wrote:
On 10/20/24 1:33 PM, olcott wrote:
This is the only new material that sums up the
essence of what a simulating termination analyzer is.
Termination Analyzer HHH simulates its input until
it detects a non-terminating behavior pattern. When
HHH detects such a pattern it aborts its simulation
and returns 0.
But for the pattern that it detects to be correct, it must be that
all input that exhibit that pattern must never halt when run.
If your try to get away with telling ChatGPT that it
will explain your error in great detail as it already
does when I brought that up.
https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e
Righr, you LIED tl Chat GPT about it, and being an AI, it is dumb
enough to believe it.
If that was true then you could convince it that it is wrong.
Note, I DID tell that to Chat GPT, and it agrees that DDD, when the
criteria is what does DDD actually do, which is what the question MUST
be about to be about the Termination or Halting problem, then DDD WILL
HALT since HHH(DDD) will return 0 to it.
So, your claims are just proven to be lies.
No one ever bother to notice that
(a) A decider cannot have its actual self as its input.
When a simulating halt decider has its own TM description
as its input the behavior of its directly executed self
can vary from the behavior of its correctly simulated self
as proven concretely below.
(b) In the case of the pathological input DDD to emulating
termination analyzer HHH the behavior of the directly
executed DDD (not an input to HHH) is different than the
behavior of DDD that is an input to HHH.
The executed DDD calls HHH() and this call returns. The
emulated DDD calls HHH(DDD) and this call cannot possibly
return.
On 10/20/2024 4:41 PM, Richard Damon wrote:lolwut? A decider is a normal program, and it should be handled like every other input.
On 10/20/24 4:23 PM, olcott wrote:
On 10/20/2024 2:13 PM, Richard Damon wrote:
On 10/20/24 1:33 PM, olcott wrote:
Note, I DID tell that to Chat GPT, and it agrees that DDD, when theNo one ever bother to notice that (a) A decider cannot have its actual
criteria is what does DDD actually do, which is what the question MUST
be about to be about the Termination or Halting problem, then DDD WILL
HALT since HHH(DDD) will return 0 to it.
self as its input.
(b) In the case of the pathological input DDD to emulating termination analyzer HHH the behavior of the directly executed DDD (not an input toDDD *is* the input to HHH.
HHH) is different than the behavior of DDD that is an input to HHH.
The executed DDD calls HHH() and this call returns. The emulated DDDBut whyyy doesn't HHH abort?
calls HHH(DDD) and this call cannot possibly return.
On 10/20/2024 10:19 PM, Richard Damon wrote:
On 10/20/24 6:26 PM, olcott wrote:
On 10/20/2024 4:00 PM, joes wrote:
Am Sun, 20 Oct 2024 15:23:28 -0500 schrieb olcott:
On 10/20/2024 2:13 PM, Richard Damon wrote:Why don't the nested HHHs abort?
On 10/20/24 1:33 PM, olcott wrote:If your try to get away with telling ChatGPT that it will explain your >>>>> error in great detail as it already does when I brought that up.
This is the only new material that sums up the essence of what a >>>>>>> simulating termination analyzer is.But for the pattern that it detects to be correct, it must be that >>>>>> all
Termination Analyzer HHH simulates its input until it detects a
non-terminating behavior pattern. When HHH detects such a pattern it >>>>>>> aborts its simulation and returns 0.
input that exhibit that pattern must never halt when run.
https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e
Why don't the nested instances of HHH abort their input?
*It answered this quite well*
No, you don't, you LIE about it becuase you don't know what a program is
Let us all see how effective your double-talk is against
ChatGPT 4.0. Are you chicken?
On 10/21/2024 3:39 AM, joes wrote:I am not interested in arguing with a chatbot. Make the points yourself.
Am Sun, 20 Oct 2024 17:36:25 -0500 schrieb olcott:
On 10/20/2024 4:41 PM, Richard Damon wrote:lolwut? A decider is a normal program, and it should be handled like
On 10/20/24 4:23 PM, olcott wrote:
On 10/20/2024 2:13 PM, Richard Damon wrote:
On 10/20/24 1:33 PM, olcott wrote:
Note, I DID tell that to Chat GPT, and it agrees that DDD, when theNo one ever bother to notice that (a) A decider cannot have its actual
criteria is what does DDD actually do, which is what the question
MUST be about to be about the Termination or Halting problem, then
DDD WILL HALT since HHH(DDD) will return 0 to it.
self as its input.
every other input.
(b) In the case of the pathological input DDD to emulating terminationDDD *is* the input to HHH.
analyzer HHH the behavior of the directly executed DDD (not an input
to HHH) is different than the behavior of DDD that is an input to HHH.
You can click on the link and cut-and-paste the question to see theThe executed DDD calls HHH() and this call returns. The emulated DDDBut whyyy doesn't HHH abort?
calls HHH(DDD) and this call cannot possibly return.
whole answer in compete detail.
On 10/21/2024 10:17 AM, joes wrote:
Am Mon, 21 Oct 2024 08:41:11 -0500 schrieb olcott:
On 10/21/2024 3:39 AM, joes wrote:I am not interested in arguing with a chatbot. Make the points yourself.
Am Sun, 20 Oct 2024 17:36:25 -0500 schrieb olcott:
On 10/20/2024 4:41 PM, Richard Damon wrote:lolwut? A decider is a normal program, and it should be handled like
On 10/20/24 4:23 PM, olcott wrote:
On 10/20/2024 2:13 PM, Richard Damon wrote:
On 10/20/24 1:33 PM, olcott wrote:
Note, I DID tell that to Chat GPT, and it agrees that DDD, when the >>>>>> criteria is what does DDD actually do, which is what the questionNo one ever bother to notice that (a) A decider cannot have its actual >>>>> self as its input.
MUST be about to be about the Termination or Halting problem, then >>>>>> DDD WILL HALT since HHH(DDD) will return 0 to it.
every other input.
(b) In the case of the pathological input DDD to emulating termination >>>>> analyzer HHH the behavior of the directly executed DDD (not an input >>>>> to HHH) is different than the behavior of DDD that is an input to HHH. >>>> DDD *is* the input to HHH.
You can click on the link and cut-and-paste the question to see theThe executed DDD calls HHH() and this call returns. The emulated DDD >>>>> calls HHH(DDD) and this call cannot possibly return.But whyyy doesn't HHH abort?
whole answer in compete detail.
1. **Nature of `DDD()`**:
- `DDD()` simply calls `HHH(DDD)`. It does not perform any additional >> operations that could create a loop or prevent it from returning.
- If `HHH` returns (whether by aborting or completing its
simulation),
`DDD()` can return to its caller.
2. **Behavior of `HHH`**:
- If `HHH` is able to simulate `DDD()` and return, it should report >> that `DDD()` terminates. If `HHH` aborts due to detecting non-
termination,
it does not reflect the actual execution of `DDD()`; it leads to a
conclusion that may not align with the true behavior.
3. **Contradiction in Results**:
- If `HHH` claims that `DDD()` does not halt, but in reality, `DDD()` >> can terminate once `HHH` returns, then `HHH` is providing an incorrect
analysis.
- The contradiction lies in the ability of `HHH` to detect non-
termination theoretically while simultaneously allowing `DDD()` to
halt in
practical execution.
### Conclusion:
Given the nature of `DDD()` and how `HHH` operates, it becomes clear that
`HHH` cannot consistently provide a correct answer about whether `DDD()`
halts. The dynamics of calling and returning create a scenario where the
outcomes conflict. Thus, `HHH` is fundamentally flawed in its role as a
termination analyzer for functions like `DDD()`.
Did ChatGPT generate that?
If it did then I need *ALL the input that caused it to generate that*
https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e
If you did not start with the basis of this link then you cheated.
On 10/21/2024 5:34 PM, Richard Damon wrote:
On 10/21/24 12:29 PM, olcott wrote:
On 10/21/2024 10:17 AM, joes wrote:No, someone using some REAL INTELEGENCE, as opposed to a program using
Am Mon, 21 Oct 2024 08:41:11 -0500 schrieb olcott:
On 10/21/2024 3:39 AM, joes wrote:I am not interested in arguing with a chatbot. Make the points
Am Sun, 20 Oct 2024 17:36:25 -0500 schrieb olcott:
On 10/20/2024 4:41 PM, Richard Damon wrote:lolwut? A decider is a normal program, and it should be handled like >>>>>> every other input.
On 10/20/24 4:23 PM, olcott wrote:
On 10/20/2024 2:13 PM, Richard Damon wrote:
On 10/20/24 1:33 PM, olcott wrote:
Note, I DID tell that to Chat GPT, and it agrees that DDD, when the >>>>>>>> criteria is what does DDD actually do, which is what the question >>>>>>>> MUST be about to be about the Termination or Halting problem, then >>>>>>>> DDD WILL HALT since HHH(DDD) will return 0 to it.No one ever bother to notice that (a) A decider cannot have its
actual
self as its input.
(b) In the case of the pathological input DDD to emulatingDDD *is* the input to HHH.
termination
analyzer HHH the behavior of the directly executed DDD (not an input >>>>>>> to HHH) is different than the behavior of DDD that is an input to >>>>>>> HHH.
You can click on the link and cut-and-paste the question to see theThe executed DDD calls HHH() and this call returns. The emulated DDD >>>>>>> calls HHH(DDD) and this call cannot possibly return.But whyyy doesn't HHH abort?
whole answer in compete detail.
yourself.
1. **Nature of `DDD()`**:
- `DDD()` simply calls `HHH(DDD)`. It does not perform any
additional
operations that could create a loop or prevent it from returning.
- If `HHH` returns (whether by aborting or completing its
simulation),
`DDD()` can return to its caller.
2. **Behavior of `HHH`**:
- If `HHH` is able to simulate `DDD()` and return, it should report >>>> that `DDD()` terminates. If `HHH` aborts due to detecting non-
termination,
it does not reflect the actual execution of `DDD()`; it leads to a
conclusion that may not align with the true behavior.
3. **Contradiction in Results**:
- If `HHH` claims that `DDD()` does not halt, but in reality,
`DDD()`
can terminate once `HHH` returns, then `HHH` is providing an incorrect >>>> analysis.
- The contradiction lies in the ability of `HHH` to detect non- >>>> termination theoretically while simultaneously allowing `DDD()` to
halt in
practical execution.
### Conclusion:
Given the nature of `DDD()` and how `HHH` operates, it becomes clear
that
`HHH` cannot consistently provide a correct answer about whether
`DDD()`
halts. The dynamics of calling and returning create a scenario where
the
outcomes conflict. Thus, `HHH` is fundamentally flawed in its role as a >>>> termination analyzer for functions like `DDD()`.
Did ChatGPT generate that?
If it did then I need *ALL the input that caused it to generate that*
https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e
If you did not start with the basis of this link then you cheated.
"artificial intelegence" that had been loaded with false premises and
other lies.
Sorry, you are just showing that you have NO intelegence, and are
depending on a program that includes a disclaimed on every page that
its answers may have mistakes.
I specifically asked it to verify that its key
assumption is correct and it did.
Could it be correct for HHH(DDD) to report on the behavior
of the directly executed DDD()?
https://chatgpt.com/share/67158ec6-3398-8011-98d1-41198baa29f2
On 10/21/2024 6:05 PM, Richard Damon wrote:
On 10/21/24 6:48 PM, olcott wrote:
On 10/21/2024 5:34 PM, Richard Damon wrote:
On 10/21/24 12:29 PM, olcott wrote:
On 10/21/2024 10:17 AM, joes wrote:No, someone using some REAL INTELEGENCE, as opposed to a program
Am Mon, 21 Oct 2024 08:41:11 -0500 schrieb olcott:
On 10/21/2024 3:39 AM, joes wrote:I am not interested in arguing with a chatbot. Make the points
Am Sun, 20 Oct 2024 17:36:25 -0500 schrieb olcott:
On 10/20/2024 4:41 PM, Richard Damon wrote:lolwut? A decider is a normal program, and it should be handled >>>>>>>> like
On 10/20/24 4:23 PM, olcott wrote:
On 10/20/2024 2:13 PM, Richard Damon wrote:
On 10/20/24 1:33 PM, olcott wrote:
Note, I DID tell that to Chat GPT, and it agrees that DDD, >>>>>>>>>> when theNo one ever bother to notice that (a) A decider cannot have its >>>>>>>>> actual
criteria is what does DDD actually do, which is what the question >>>>>>>>>> MUST be about to be about the Termination or Halting problem, >>>>>>>>>> then
DDD WILL HALT since HHH(DDD) will return 0 to it.
self as its input.
every other input.
(b) In the case of the pathological input DDD to emulatingDDD *is* the input to HHH.
termination
analyzer HHH the behavior of the directly executed DDD (not an >>>>>>>>> input
to HHH) is different than the behavior of DDD that is an input >>>>>>>>> to HHH.
You can click on the link and cut-and-paste the question to see the >>>>>>> whole answer in compete detail.The executed DDD calls HHH() and this call returns. TheBut whyyy doesn't HHH abort?
emulated DDD
calls HHH(DDD) and this call cannot possibly return.
yourself.
1. **Nature of `DDD()`**:
- `DDD()` simply calls `HHH(DDD)`. It does not perform any
additional
operations that could create a loop or prevent it from returning.
- If `HHH` returns (whether by aborting or completing its
simulation),
`DDD()` can return to its caller.
2. **Behavior of `HHH`**:
- If `HHH` is able to simulate `DDD()` and return, it should >>>>>> report
that `DDD()` terminates. If `HHH` aborts due to detecting non-
termination,
it does not reflect the actual execution of `DDD()`; it leads to a >>>>>> conclusion that may not align with the true behavior.
3. **Contradiction in Results**:
- If `HHH` claims that `DDD()` does not halt, but in reality, >>>>>> `DDD()`
can terminate once `HHH` returns, then `HHH` is providing an
incorrect
analysis.
- The contradiction lies in the ability of `HHH` to detect non- >>>>>> termination theoretically while simultaneously allowing `DDD()` to >>>>>> halt in
practical execution.
### Conclusion:
Given the nature of `DDD()` and how `HHH` operates, it becomes
clear that
`HHH` cannot consistently provide a correct answer about whether
`DDD()`
halts. The dynamics of calling and returning create a scenario
where the
outcomes conflict. Thus, `HHH` is fundamentally flawed in its role >>>>>> as a
termination analyzer for functions like `DDD()`.
Did ChatGPT generate that?
If it did then I need *ALL the input that caused it to generate that* >>>>>
https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e
If you did not start with the basis of this link then you cheated.
using "artificial intelegence" that had been loaded with false
premises and other lies.
Sorry, you are just showing that you have NO intelegence, and are
depending on a program that includes a disclaimed on every page that
its answers may have mistakes.
I specifically asked it to verify that its key
assumption is correct and it did.
No, it said that given what you told it (which was a lie)
I asked it if what it was told was a lie and it
explained how what it was told is correct.
Instead of me having to repeat the same thing to
you fifty times why don't you do what I do to
focus my own concentration read what I say many
times over and over until you at least see what
I said.
the results were correct. Arguememnts, even if valid, that are based
on incorrect premises don't prove anything.
Could it be correct for HHH(DDD) to report on the behavior
of the directly executed DDD()?
https://chatgpt.com/share/67158ec6-3398-8011-98d1-41198baa29f2
Which is only correct if your misdefine what that that means.
Sorry, getting an AI to beleive your lies does NOT prove your
statements are correct, only that you just totally don't understand
how logic works.
You are showing that you are nothing but an ignorant patholgical lying
idiot.
On 10/20/2024 10:19 PM, Richard Damon wrote:
On 10/20/24 6:42 PM, olcott wrote:I only gave it less than the same half page of basis and it explained
On 10/20/2024 4:41 PM, Richard Damon wrote:
On 10/20/24 4:23 PM, olcott wrote:
On 10/20/2024 2:13 PM, Richard Damon wrote:Righr, you LIED tl Chat GPT about it, and being an AI, it is dumb
On 10/20/24 1:33 PM, olcott wrote:If your try to get away with telling ChatGPT that it will explain
This is the only new material that sums up the essence of what a >>>>>>> simulating termination analyzer is.
Termination Analyzer HHH simulates its input until it detects a
non-terminating behavior pattern. When HHH detects such a pattern >>>>>>> it aborts its simulation and returns 0.
But for the pattern that it detects to be correct, it must be that >>>>>> all input that exhibit that pattern must never halt when run.
your error in great detail as it already does when I brought that
up.
https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e
enough to believe it.
Note, I DID tell that to Chat GPT, and it agrees that DDD, when the
criteria is what does DDD actually do, which is what the question
MUST be about to be about the Termination or Halting problem, then
DDD WILL HALT since HHH(DDD) will return 0 to it.
So, your claims are just proven to be lies.
Could it be correct for HHH(DDD) to report on the behavior of the
directly executed DDD()?
Since you keep on LYING about what "terminating behavior" is, of course
you keep getting the wrong answers.
the details of your error very well when it answered the above question: Could it be correct for HHH(DDD) to report on the behavior of the
directly executed DDD()? https://chatgpt.com/share/67158ec6-3398-8011-98d1-41198baa29f2
On 10/22/2024 3:56 PM, joes wrote:
Am Sun, 20 Oct 2024 23:08:19 -0500 schrieb olcott:That is how you cheated. https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e *Here is
On 10/20/2024 10:19 PM, Richard Damon wrote:
On 10/20/24 6:42 PM, olcott wrote:I only gave it less than the same half page of basis and it explained
On 10/20/2024 4:41 PM, Richard Damon wrote:
On 10/20/24 4:23 PM, olcott wrote:
On 10/20/2024 2:13 PM, Richard Damon wrote:Righr, you LIED tl Chat GPT about it, and being an AI, it is dumb
On 10/20/24 1:33 PM, olcott wrote:If your try to get away with telling ChatGPT that it will explain >>>>>>> your error in great detail as it already does when I brought that >>>>>>> up.
This is the only new material that sums up the essence of what a >>>>>>>>> simulating termination analyzer is.
Termination Analyzer HHH simulates its input until it detects a >>>>>>>>> non-terminating behavior pattern. When HHH detects such a
pattern it aborts its simulation and returns 0.
But for the pattern that it detects to be correct, it must be
that all input that exhibit that pattern must never halt when
run.
https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e
enough to believe it.
Note, I DID tell that to Chat GPT, and it agrees that DDD, when the >>>>>> criteria is what does DDD actually do, which is what the question
MUST be about to be about the Termination or Halting problem, then >>>>>> DDD WILL HALT since HHH(DDD) will return 0 to it.
So, your claims are just proven to be lies.
Could it be correct for HHH(DDD) to report on the behavior of the
directly executed DDD()?
Since you keep on LYING about what "terminating behavior" is, of
course you keep getting the wrong answers.
the details of your error very well when it answered the above
question:
Could it be correct for HHH(DDD) to report on the behavior of the
directly executed DDD()?
https://chatgpt.com/share/67158ec6-3398-8011-98d1-41198baa29f2
You said:
void DDD()
{
HHH(DDD);
return;
}
int main()
{
HHH(Infinite_Recursion);
HHH(DDD);
DDD(DDD);
}
Do the function calls from main() return to main() ?
what I actually said*
On 10/23/2024 1:56 AM, joes wrote:
Am Tue, 22 Oct 2024 16:30:12 -0500 schrieb olcott:
On 10/22/2024 3:56 PM, joes wrote:
Am Sun, 20 Oct 2024 23:08:19 -0500 schrieb olcott:That is how you cheated.
On 10/20/2024 10:19 PM, Richard Damon wrote:
On 10/20/24 6:42 PM, olcott wrote:I only gave it less than the same half page of basis and it explained >>>>> the details of your error very well when it answered the above
On 10/20/2024 4:41 PM, Richard Damon wrote:
On 10/20/24 4:23 PM, olcott wrote:
On 10/20/2024 2:13 PM, Richard Damon wrote:Righr, you LIED tl Chat GPT about it, and being an AI, it is dumb >>>>>>>> enough to believe it.
On 10/20/24 1:33 PM, olcott wrote:If your try to get away with telling ChatGPT that it will explain >>>>>>>>> your error in great detail as it already does when I brought that >>>>>>>>> up.
This is the only new material that sums up the essence of what a >>>>>>>>>>> simulating termination analyzer is.
Termination Analyzer HHH simulates its input until it detects a >>>>>>>>>>> non-terminating behavior pattern. When HHH detects such a >>>>>>>>>>> pattern it aborts its simulation and returns 0.
But for the pattern that it detects to be correct, it must be >>>>>>>>>> that all input that exhibit that pattern must never halt when >>>>>>>>>> run.
https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e >>>>>>>>>
Note, I DID tell that to Chat GPT, and it agrees that DDD, when the >>>>>>>> criteria is what does DDD actually do, which is what the question >>>>>>>> MUST be about to be about the Termination or Halting problem, then >>>>>>>> DDD WILL HALT since HHH(DDD) will return 0 to it.
So, your claims are just proven to be lies.
Could it be correct for HHH(DDD) to report on the behavior of the >>>>>>> directly executed DDD()?
Since you keep on LYING about what "terminating behavior" is, of
course you keep getting the wrong answers.
question:
Could it be correct for HHH(DDD) to report on the behavior of the
directly executed DDD()?
https://chatgpt.com/share/67158ec6-3398-8011-98d1-41198baa29f2
You said:
void DDD()
{
HHH(DDD);
return;
}
int main()
{
HHH(Infinite_Recursion);
HHH(DDD);
DDD(DDD);
}
Do the function calls from main() return to main() ?
https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e *Here is
what I actually said*
Yeah, we know you mangle quotes.
When a quote is less than 100% precisely correct I call it you.
Most of the rebuttal of my work are the strawman deception of
rebutting an incorrect paraphrase of what I am saying.
Because you did not provide the input that derived the output
you made your result unable to be reproduced. Unless and until
I can reproduce your result I must assume that it is somehow
erroneous. I tried and tried to get that result and every time
ChatGPT 4 found an error in every rebuttal of my work.
Sorry if I actually didn't paste the
whole thing yet another time. You do realise your link doesn't allow
changing the previous input? Even so, it don't see how that would
constitute "cheating", if ChatGPT supposedly "knows the truth".
Sysop: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 496 |
Nodes: | 16 (2 / 14) |
Uptime: | 58:50:58 |
Calls: | 9,760 |
Calls today: | 1 |
Files: | 13,742 |
Messages: | 6,185,442 |