Re: Proving the: Simulating termination analyzer Principle

Liste des GroupesRevenir à cl c 
Sujet : Re: Proving the: Simulating termination analyzer Principle
De : polcott333 (at) *nospam* gmail.com (olcott)
Groupes : comp.lang.c
Date : 14. Apr 2025, 00:26:40
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vthh7h$3uil9$1@dont-email.me>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
User-Agent : Mozilla Thunderbird
On 4/13/2025 4:50 PM, Chris M. Thomasson wrote:
On 4/13/2025 12:56 PM, olcott wrote:
On 4/13/2025 2:38 PM, Chris M. Thomasson wrote:
On 4/13/2025 5:03 AM, olcott wrote:
On 4/11/2025 3:00 PM, Chris M. Thomasson wrote:
On 4/11/2025 7:42 AM, olcott wrote:
On 4/10/2025 10:00 PM, Chris M. Thomasson wrote:
On 4/10/2025 3:53 PM, olcott wrote:
On 4/9/2025 11:04 PM, Chris M. Thomasson wrote:
On 4/9/2025 7:02 PM, olcott wrote:
On 4/9/2025 6:39 PM, Chris M. Thomasson wrote:
On 4/9/2025 10:18 AM, olcott wrote:
On 4/9/2025 1:00 AM, Chris M. Thomasson wrote:
On 4/5/2025 8:26 PM, olcott wrote:
[...]
Of course not that is a very dumb question.
You are asking if it can carefully examine
all of the details of what it is not allowed to see.
>
Does your halt decider work or not?
>
>
A variant of HHH had been a correct termination analyzer
on its domain of inputs for several years.
https://github.com/plolcott/x86utm/blob/master/Halt7.c
[...]
>
Is domain of inputs? So, an input for your "thing" cannot be crafted by a third party?
>
It is not that hard, why do you pretend that it is?
Have you ever heard of a domain of inputs?
>
 Don't tell me its something akin to:
 <code typed in the news reader, sorry for any typos!>
____________________________
#include <stdio.h>
  static
unsigned long
iter_0(
     unsigned long ri,
     unsigned long rn
);
  unsigned long
iter_1(
     unsigned long ri,
     unsigned long rn
) {
     if (ri > rn) return 666;
     printf("iter_1 %lu %lu\n", ri, rn);
     return iter_0(ri + 1, rn);
}
 unsigned long
iter_0(
     unsigned long ri,
     unsigned long rn
) {
     if (ri > rn) return 42;
     printf("iter_0 %lu %lu\n", ri, rn);
     return iter_1(ri + 1, rn);
}
 int main()
{
     unsigned long ri = 0;
     unsigned long rn = 42;
      unsigned long result = iter_0(ri, rn);
      printf("\nresult = %lu\n", result);
      return 0;
}
____________________________
 ?
Computable functions are the basic objects of study in computability theory. Computable functions are the formalized analogue of the intuitive notion of algorithms, in the sense that a function is computable if there exists an algorithm that can do the job of the function, i.e. *given an input of the function domain* it can return the corresponding output.
https://en.wikipedia.org/wiki/Computable_function
--
Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
hits a target no one else can see." Arthur Schopenhauer

Date Sujet#  Auteur
5 Apr 25 * Proving the: Simulating termination analyzer Principle66olcott
5 Apr 25 +* Re: Proving the: Simulating termination analyzer Principle27dbush
5 Apr 25 i`* Re: Proving the: Simulating termination analyzer Principle26olcott
5 Apr 25 i +* Re: Proving the: Simulating termination analyzer Principle24dbush
5 Apr 25 i i`* Re: Proving the: Simulating termination analyzer Principle23Richard Heathfield
5 Apr 25 i i +* Re: Proving the: Simulating termination analyzer Principle11dbush
6 Apr 25 i i i`* Re: Proving the: Simulating termination analyzer Principle10olcott
6 Apr 25 i i i +* Re: Proving the: Simulating termination analyzer Principle5dbush
6 Apr 25 i i i i`* Re: Proving the: Simulating termination analyzer Principle4olcott
6 Apr 25 i i i i +* Re: Proving the: Simulating termination analyzer Principle2Richard Heathfield
6 Apr 25 i i i i i`- Re: Proving the: Simulating termination analyzer Principle1olcott
6 Apr 25 i i i i `- Re: Proving the: Simulating termination analyzer Principle1dbush
6 Apr 25 i i i `* Re: Proving the: Simulating termination analyzer Principle4Richard Heathfield
6 Apr 25 i i i  `* Re: Proving the: Simulating termination analyzer Principle3olcott
6 Apr 25 i i i   `* Re: Proving the: Simulating termination analyzer Principle2Richard Heathfield
6 Apr 25 i i i    `- Re: Proving the: Simulating termination analyzer Principle1olcott
6 Apr 25 i i `* Re: Proving the: Simulating termination analyzer Principle11olcott
6 Apr 25 i i  +* Re: Proving the: Simulating termination analyzer Principle6dbush
6 Apr 25 i i  i`* Re: Proving the: Simulating termination analyzer Principle5olcott
6 Apr 25 i i  i +* Re: Proving the: Simulating termination analyzer Principle2Richard Heathfield
6 Apr 25 i i  i i`- Re: Proving the: Simulating termination analyzer Principle1olcott
6 Apr 25 i i  i `* Re: Proving the: Simulating termination analyzer Principle2dbush
6 Apr 25 i i  i  `- Re: Proving the: Simulating termination analyzer Principle1olcott
6 Apr 25 i i  +- Re: Proving the: Simulating termination analyzer Principle1Richard Heathfield
6 Apr 25 i i  `* Re: Proving the: Simulating termination analyzer Principle3James Kuyper
6 Apr 25 i i   `* Re: Proving the: Simulating termination analyzer Principle2olcott
6 Apr 25 i i    `- Re: Proving the: Simulating termination analyzer Principle1Richard Heathfield
5 Apr 25 i `- Re: Proving the: Simulating termination analyzer Principle1Chris M. Thomasson
5 Apr 25 `* Re: Proving the: Simulating termination analyzer Principle38Richard Heathfield
5 Apr 25  `* Re: Proving the: Simulating termination analyzer Principle37olcott
5 Apr 25   `* Re: Proving the: Simulating termination analyzer Principle36Richard Heathfield
5 Apr 25    +* Re: Proving the: Simulating termination analyzer Principle15Kaz Kylheku
6 Apr 25    i+* Re: Proving the: Simulating termination analyzer Principle13Richard Heathfield
6 Apr 25    ii`* Re: Proving the: Simulating termination analyzer Principle12Tim Rentsch
6 Apr 25    ii +- Re: Proving the: Simulating termination analyzer Principle1Richard Heathfield
6 Apr 25    ii `* Re: Proving the: Simulating termination analyzer Principle10olcott
7 Apr 25    ii  `* Re: Proving the: Simulating termination analyzer Principle9Tim Rentsch
7 Apr 25    ii   `* Re: Proving the: Simulating termination analyzer Principle8olcott
7 Apr 25    ii    `* Re: Proving the: Simulating termination analyzer Principle7Tim Rentsch
7 Apr 25    ii     +* Re: Proving the: Simulating termination analyzer Principle4Keith Thompson
7 Apr 25    ii     i+- Re: Proving the: Simulating termination analyzer Principle1olcott
8 Apr 25    ii     i`* Re: Proving the: Simulating termination analyzer Principle2Tim Rentsch
9 Apr 25    ii     i `- Re: Proving the: Simulating termination analyzer Principle1olcott
7 Apr 25    ii     +- Re: Proving the: Simulating termination analyzer Principle1olcott
9 Apr 25    ii     `- Re: Proving the: Simulating termination analyzer Principle1olcott
6 Apr 25    i`- Re: Proving the: Simulating termination analyzer Principle1olcott
6 Apr 25    `* Re: Proving the: Simulating termination analyzer Principle20olcott
6 Apr 25     `* Re: Proving the: Simulating termination analyzer Principle19Richard Heathfield
6 Apr 25      `* Re: Proving the: Simulating termination analyzer Principle18olcott
9 Apr 25       `* Re: Proving the: Simulating termination analyzer Principle17Chris M. Thomasson
9 Apr 25        `* Re: Proving the: Simulating termination analyzer Principle16olcott
10 Apr 25         `* Re: Proving the: Simulating termination analyzer Principle15Chris M. Thomasson
10 Apr 25          `* Re: Proving the: Simulating termination analyzer Principle14olcott
10 Apr 25           `* Re: Proving the: Simulating termination analyzer Principle13Chris M. Thomasson
10 Apr 25            +- Re: Proving the: Simulating termination analyzer Principle1Chris M. Thomasson
10 Apr 25            `* Re: Proving the: Simulating termination analyzer Principle11olcott
11 Apr 25             `* Re: Proving the: Simulating termination analyzer Principle10Chris M. Thomasson
11 Apr 25              `* Re: Proving the: Simulating termination analyzer Principle9olcott
11 Apr 25               `* Re: Proving the: Simulating termination analyzer Principle8Chris M. Thomasson
11 Apr 25                +* Re: Proving the: Simulating termination analyzer Principle2Richard Heathfield
13 Apr 25                i`- Re: Proving the: Simulating termination analyzer Principle1olcott
13 Apr 25                `* Re: Proving the: Simulating termination analyzer Principle5olcott
13 Apr 25                 `* Re: Proving the: Simulating termination analyzer Principle4Chris M. Thomasson
13 Apr 25                  `* Re: Proving the: Simulating termination analyzer Principle3olcott
13 Apr 25                   `* Re: Proving the: Simulating termination analyzer Principle2Chris M. Thomasson
14 Apr 25                    `- Re: Proving the: Simulating termination analyzer Principle1olcott

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal