• Olcott's Major Malfunction

    From Mr Flibble@flibble@red-dwarf.jmc.corp to comp.lang.c++ on Thu Aug 7 22:01:12 2025
    From Newsgroup: comp.lang.c++

    Olcott's major malfunction as far as the Halting Problem is concerned is
    his inability to recognise the difference between (and/or his conflation
    of) *execution* with *computation*.

    /Flibble
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Me Say So@me@invalid.invalid to comp.lang.c++ on Thu Aug 7 22:34:43 2025
    From Newsgroup: comp.lang.c++

    On 07/08/2025 23:01, Mr Flibble wrote:
    Olcott's major malfunction as far as the Halting Problem is concerned is
    his inability to recognise the difference between (and/or his conflation
    of) *execution* with *computation*.

    /Flibble

    Are you aware that Olcott wants to win a Nobel Prize in Computing before
    he dies of cancer?

    He's been telling everyone for at least 10 years that his cancer is at
    an advanced stage, yet he's still alive and posting his nonsense on
    these newsgroups, and you guys are falling for it.

    Just killfile him and we won't have any of his nonsense here.





    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Bonita Montero@Bonita.Montero@gmail.com to comp.lang.c++ on Fri Aug 8 10:24:23 2025
    From Newsgroup: comp.lang.c++

    Am 08.08.2025 um 00:01 schrieb Mr Flibble:

    Olcott's major malfunction as far as the Halting Problem is concerned is
    his inability to recognise the difference between (and/or his conflation
    of) *execution* with *computation*.

    Please don't feed Pete Olcott.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Chris M. Thomasson@chris.m.thomasson.1@gmail.com to comp.lang.c++ on Mon Aug 11 14:13:46 2025
    From Newsgroup: comp.lang.c++

    On 8/7/2025 3:01 PM, Mr Flibble wrote:
    Olcott's major malfunction as far as the Halting Problem is concerned is
    his inability to recognise the difference between (and/or his conflation
    of) *execution* with *computation*.


    Is his work anything akin to the following?
    ____________________
    #include <iostream>


    unsigned long
    ct_program(
    unsigned long ri,
    unsigned long rn
    ) {
    if (ri > rn) return 555;

    unsigned long status = ct_program(ri + 1, rn);

    std::cout << "program iterate: " << status << " = ct_program(" <<
    ri << ", " << rn << ");\n";

    return status;
    }


    unsigned long
    ct_simulate(
    unsigned long ri,
    unsigned long rn
    ) {
    if (ri > rn) return 555;

    std::cout << "ct_simulate(" << ri << ", " << rn << ");\n";
    std::cout << "__________________\n";

    unsigned long program_status = ct_program(ri + 1, rn);
    unsigned long simulate_status = ct_simulate(ri + 1, rn);

    std::cout << program_status << " = ct_program(" << ri << ", " << rn
    << ");\n";
    std::cout << simulate_status << " = ct_simulate(" << ri << ", " <<
    rn << ");\n";

    return 42;
    }


    int
    main()
    {
    std::cout << "Testing 123...\n";
    std::cout << "____________________________\n";

    unsigned long rn = 10;
    unsigned long simulate_status = ct_simulate(0, rn);

    std::cout << "____________________________\n";
    std::cout << "\nFinal State:" << "\n";
    std::cout << "simulate_status = " << simulate_status << "\n";

    return 0;
    }
    ____________________
    --- Synchronet 3.21a-Linux NewsLink 1.2