Re: How Partial Simulations incorrectly determine non-halting ---Mike Terry Error

Liste des GroupesRevenir à c theory 
Sujet : Re: How Partial Simulations incorrectly determine non-halting ---Mike Terry Error
De : noreply (at) *nospam* example.com (joes)
Groupes : comp.theory
Date : 06. Jun 2024, 00:04:51
Autres entêtes
Organisation : i2pn2 (i2pn.org)
Message-ID : <v3qquj$3528b$1@i2pn2.org>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
User-Agent : Pan/0.145 (Duplicitous mercenary valetism; d7e168a git.gnome.org/pan2)
Am Wed, 05 Jun 2024 17:07:20 -0500 schrieb olcott:
On 6/5/2024 3:28 PM, Mike Terry wrote:
On 05/06/2024 17:49, olcott wrote:
On 6/5/2024 10:55 AM, Mike Terry wrote:
On 05/06/2024 10:38, Ben Bacarisse wrote:
John Smith <news2@immibis.com> writes:
>
What happens now is that there is one single trace array in global
memory, and all simulations appends simulated instructions to that one
array
YES

and can read array entries written by other simulation levels.
NO they have not been doing this and I will encode it so that this is
impossible. I knew about this issue about two years before you recently
raised it. I only found out abut this issue from comp.theory
respondents.

That fundamentally breaks the concept of a simulation exactly matching
the behaviour of the outer (unsimulated) computation.  More details
below...
I have known this for at least two years.
Oh really? Do you know that a simulation can't be aborted?

[but the problem is I don't believe you really understand what the
requirements of simulation are, because if you did you simply wouldn't
have written code like that in the first place...]
I was emulating a UTM passing a portion of its own tape down to its
simulated instances of itself. That aspect always seemed legit.
The simulator should not pass its own tape to be read. It can use its
own tape as space for simulation.

And calling it "a portion of what is essentially its own TM tape" is
just obfuscation to try to hide the obvious breaking of rules.
Not if the simulated instances never access the data from the
outer-simulations. I will encode this to make it impossible.
I will encode u32 start_tape_address to the position in execution_trace
where the simulated HH begins so that it will not ever look further
back.

The key objection that you seemed to have is that it can't pass any
information to its simulated instance that they can use in their own
halt status decision.
Partly right but woefully incomplete.  If you added "...or to modify
its logical behaviour in any way" that would be a good summing up.
Either the simulated instances must some how know not to allocate memory
for what is essentially a portion of the master UTM tape that is passed
down to them, or the master UTM must some how find the UTM tape of these
simulated instances.
The simulated instances don't know anything about the master tape. The
master knows everything.

Your specific focus on just "their own halt status decision" is only
one part of the picture - my guess would be you know "the rules" but
for whatever reason the only solution you can come up with breaks the
rules,
so you try to convince yourself that that's ok by changing the rules.
I am having you analyze the details. I was basically gobsmacked that A
TM cannot do any damn thing that any C program can do.
It has been at least three years since then.
What can a TM not do?

More specifically, the behaviour of a simulated HH must exactly[*]
match the behaviour of the outer (unsimulated) HH.
Behaviour means all of the following:
-  the instruction path of simulated HH exactly matches the instruction
path
    of the outer HH.  [Currently HH has different code paths for
    simulated/
    outer execution!  It is not enough that you /believe/ this will
    not
affect "the result".]
They are exactly the same except that the inner ones remain stuck in
recursive simulation until the outer one stops simulating its DD.

-  registers and all data and data locations used by the simulation
must match the registers
    and data and data addresses used by the outer HH. [*]
-  no backdoor channels where a nested simulation feeds data to a
nesting simulation or vice versa. Obviously an outer simulation can
"scrape" data from it's directly simulated computation.

[*] exactly match??  A big headache is that you've chosen a model where
all the simulations share one 32-bit address space.  So simulation
working data will be at different locations to the outer working data.
IF your code acts "responsibly" this can be catered for.  E.g.
simulated data on stacks will be at different addresses for each
simulation - but still the location of the data within the stack and
their values should /exactly/ [*] match across all simulations. 
Similarly a call to Allocate() will return different results in each
simulation, but the location of all data used by the simulation
relative to that allocation address should match, and the value of the
data should match [* allowing for pointer mismatches etc.].  Near the
end of this post I give some rules for code that acts "responsibly" -
those rules try to ensure these address relocation problems don't
affect arguments you make.

None of the simulated instances ever did this,
The inner simulations examined a succession of trace entries written by
other simulation levels.
I don't think that they ever did this and they certainly do not need to
do this so I will encode HH so this is impossible.

That is wrong.  I think you've convinced yourself they didn't do
anything wrong, because you've decided to focus only on "affect their
own halt status decision", but that's not the requirement.
I knew that this was wrong for three years.
I will make the minor change to my code to make it more obvious that
they are not doing this.
You could have constructed so it isn't even possible.

yet I can make this more clear. As soon as they are initialized they
can store their own first location of this tape and never look at any
location before their own first location. In this case they would
never get a chance to look any data from the outer simulations that
they can use to change their own behavior.
I think I understand what you're thinking, and a)  you are just trying
to replace one Wrong with another Wrong that you
     hope will be given a tick by someone, rather than looking at
     what a simulation needs to be, and implementing it logically
b)  it won't work
You say that simulated HH looks back at outer-simulations I say no they
don't. I will encode it so that it is more obvious that they don't look
back.

As for (a):  What I think you're proposing is to still have the global
trace table, initialised by the outer HH, and still have different code
paths followed by inner and outer simulations.  That's all No Good.
The outer UTM is allowed to pass a portion of its own tape to its
simulated instances. I may not have done this in the cleanest way, yet
*this <is> my architectural design intention*
No. The simulation can't see anything. The simulator may use part of its
tape to store the simulated contents.

As for (b): I think you intend each inner simulation to be told where
it is starting in the global trace, so that when it inspects it, it can
start from its own starting point.  The problem is that all simulations
append to the table beyond that point, so a given simulation will
/still/ be seeing entries directly added by other simulation levels.
That is OK as long as they are lower inner levels and not higher outer
levels, according to what I figured out on my own and you confirmed:
IF. But where do entries by the simulator go after the inner machine
has already written something?

In effect you're still trying to keep the shared mutable static data
idea that breaks all 3 of the "proper simulation" requirements I laid
out above.
The outer UTM is allowed to pass a portion of its own tape to its
simulated instances. I may not have done this in the cleanest way, yet
*this <is> my architectural design intention*
 
Why would you want to do that rather than fix the obvious design flaw
itself?  I even explained some time ago how to do that properly, but
you're presenting yourself as some kind of master "Software Engineer"
and yet you can't work that out for yourself?  I'd guess it should be
perhaps a days programming effort...
I must not have understood what you were saying.
 
Anyway, the correct approach should obviously be for each simulation to
maintain its own trace table which is only written to and read by
itself.  [Obviously, outer simulations could work out where that
virtual table was implemented and /scrape/ data out of it if they
wanted to.
I knew that was one option yet could not figure out any way that HH can
reliably scrape the data from its inner simulated HH instances without
knowing that these inner HH instances are a copy of itself.

If HH merely knows its own machine address then it can do this. If HH
knows its own machine address then there is no need for data scraping it
rejects the next simulation of itself before it begins. The newer H
already does that.
A machine isn't aware of itself.

But those outer simulations would have their own trace tables with the
data relevant for their processing.  What's more, the code paths and
behaviours of HH in each simulation level would be identical which is a
basic simulation requirement.
Yet they themselves cannot ever stop running unless and until the outer
HH stops simulating them. If every HH stops simulating after three
recursive simulations then the outer one sees this first.
If H halts, its simulation doesn't need to be stopped.

I will implement this in code sometime later today and publish this
code to my repository.
The only issue left that seems to not matter is that each simulated HH
needs to see if it must initialize its own tape. Since this has no
effect on its halt status decision I don't think it makes any
difference.
Whatever would it be starting with written on the tape?
That's wrong thinking.  Each simulation level must be exactly the same
as the outer one.  Not just in terms of "their halt status decision"
but in terms of code paths, data values accessed  [* qualified as
explained above due to data relocation issues in your environment].
They are exactly the same except that the inner ones remain stuck in
recursive simulation until the outer one stops simulating its DD.
EXCEPT. If the outer one stops simulating, the inner ones do as well.

Look - if the outer HH has to initialise a variable, the inner HHs have
to initialise that same variable, because it is THEIR implementation of
that variable, within THEIR virtual address space provided by their
simulator.  Your problem comes because you insist on trying to SHARE
DATA ACROSS SIMULATIONS.
Just follow the simple and rather obvious rules like:
-  no mutable static data.  All mutable data should be anchored within
the simulations stack.
-  when pointers are involved, the pointer values should only be used
    within code to be dereferenced and access the "actual" data
    stored at that location.  [and apply this rule recursively if
    required!]
I can do all of this when HH can know its own machine address. H(D,D) is
already implemented this way.
It can't know about itself.
To follow your advice HH still needs to know its own machine address so
that its knows that the simulated copies of itself are copies of itself.
If it does not know this then is has no idea where to look inside the
simulated copies to find their execution traces.
It doesn't need to. It is just simulating a program which happens to be
identical to itself.

I will double check everything to make sure there is no data passed
from the outer simulations to the inner simulations that can possibly
be used for any halt status decision by these inner simulated
instances of HH.
..OR affect the code path blah blah.  Your focus on /just/ the halt
status decision is not enough. And anyhow you /know/ that the /only/
data passed to inner simulations must be the code to be simulated, and
the input data arguments (simulating DD(DD) that is the code of DD and
the DD argument).  NOTHING ELSE, regardless of what it affects...
Try and show how HH can find the execution trace data of the simulated
copies of itself without knowing that they are simulated copies of
itself. This seems to require HH to know its own machine address and
H(D,D) already fully implements that to reject the invocation of the
next simulation.
See above.

--
joes

Date Sujet#  Auteur
3 Jun 24 * Why does Olcott care about simulation, anyway?332immibis
3 Jun 24 +- Re: Why does Olcott care about simulation, anyway?1Richard Damon
3 Jun 24 +* Re: Why does Olcott care about simulation, anyway?309Mike Terry
3 Jun 24 i+* Re: Why does Olcott care about simulation, anyway? --- Mikes Review29olcott
3 Jun 24 ii+- Re: Why does Olcott care about simulation, anyway? --- Mikes Review1Richard Damon
3 Jun 24 ii+- Re: Why does Olcott care about simulation, anyway? --- Mikes Review1immibis
3 Jun 24 ii`* Re: Why does Olcott care about simulation, anyway? --- Mikes Review26Mike Terry
3 Jun 24 ii `* Re: Why does Olcott care about simulation, anyway? --- Mikes Review25olcott
4 Jun 24 ii  +- Re: Why does Olcott care about simulation, anyway? --- Mikes Review1Richard Damon
4 Jun 24 ii  `* Re: Why does Olcott care about simulation, anyway? --- Mikes Review23Mike Terry
4 Jun 24 ii   `* Re: Why does Olcott care about simulation, anyway? --- Mikes Review22olcott
4 Jun 24 ii    `* Re: Why does Olcott care about simulation, anyway? --- Mikes Review21Richard Damon
4 Jun 24 ii     `* Re: Why does Olcott care about simulation, anyway? --- Mikes Review20olcott
4 Jun 24 ii      +* Re: Why does Olcott care about simulation, anyway? --- Mikes Review13Richard Damon
4 Jun 24 ii      i`* Re: Why does Olcott care about simulation, anyway? --- Mikes Review12olcott
5 Jun 24 ii      i +- Re: Why does Olcott care about simulation, anyway? --- Mikes Review1Richard Damon
5 Jun 24 ii      i `* Re: Why does Olcott care about simulation, anyway? --- Mikes Review10Mikko
5 Jun 24 ii      i  `* Re: Why does Olcott care about simulation, anyway? --- Mikes Review9olcott
5 Jun 24 ii      i   +* Re: Why does Olcott care about simulation, anyway? --- Mikes Review2wij
5 Jun 24 ii      i   i`- Re: Why does Olcott care about simulation, anyway? --- Mikes Review1olcott
6 Jun 24 ii      i   +* Re: Why does Olcott care about simulation, anyway? --- Mikes Review5Mikko
6 Jun 24 ii      i   i`* Re: Why does Olcott care about simulation, anyway? --- Mikes Review4olcott
6 Jun 24 ii      i   i `* Re: Why does Olcott care about simulation, anyway? --- Mikes Review3Mikko
6 Jun 24 ii      i   i  `* Re: Why does Olcott care about simulation, anyway? --- Mikes Review2olcott
7 Jun 24 ii      i   i   `- Re: Why does Olcott care about simulation, anyway? --- Mikes Review1Richard Damon
6 Jun 24 ii      i   `- Re: Why does Olcott care about simulation, anyway? --- Mikes Review1Richard Damon
4 Jun 24 ii      `* Re: Why does Olcott care about simulation, anyway? --- Mikes Review6Mike Terry
4 Jun 24 ii       `* Re: Why does Olcott care about simulation, anyway? --- Mikes Review5olcott
4 Jun 24 ii        +* Re: Why does Olcott care about simulation, anyway? --- Mikes Review3Richard Damon
4 Jun 24 ii        i`* Re: Why does Olcott care about simulation, anyway? --- Mikes Review2olcott
5 Jun 24 ii        i `- Re: Why does Olcott care about simulation, anyway? --- Mikes Review1Richard Damon
4 Jun 24 ii        `- Re: Why does Olcott care about simulation, anyway? --- Mikes Review1immibis
3 Jun 24 i`* Re: Why does Olcott care about simulation, anyway?279Ben Bacarisse
3 Jun 24 i +* Re: Why does Olcott care about simulation, anyway? --- Ben's Review277olcott
3 Jun 24 i i+- Re: Why does Olcott care about simulation, anyway? --- Ben's Review1immibis
3 Jun 24 i i+* Re: Why does Olcott care about simulation, anyway? --- Ben's Review73Mikko
3 Jun 24 i ii`* Re: Why does Olcott care about simulation, anyway? --- Ben's Review72olcott
4 Jun 24 i ii +- Re: Why does Olcott care about simulation, anyway? --- Ben's Review1Richard Damon
4 Jun 24 i ii +* Re: Why does Olcott care about simulation, anyway? --- Ben's Review2joes
4 Jun 24 i ii i`- Re: Why does Olcott care about simulation, anyway? --- Ben's Review1olcott
4 Jun 24 i ii +* Re: Why does Olcott care about simulation, anyway? --- Ben's Review67Mikko
4 Jun 24 i ii i`* Halting Problem is wrong two different ways66olcott
4 Jun 24 i ii i +- Re: Halting Problem is wrong two different ways1immibis
5 Jun 24 i ii i +* Re: Halting Problem is wrong two different ways41Richard Damon
5 Jun 24 i ii i i`* Re: Halting Problem is wrong two different ways40olcott
5 Jun 24 i ii i i +* Re: Halting Problem is wrong two different ways21John Smith
5 Jun 24 i ii i i i`* Re: Halting Problem is wrong two different ways20olcott
5 Jun 24 i ii i i i +* Re: Halting Problem is wrong two different ways4Richard Damon
5 Jun 24 i ii i i i i`* Re: Halting Problem is wrong two different ways3Mikko
5 Jun 24 i ii i i i i `* Re: Halting Problem is wrong two different ways2olcott
6 Jun 24 i ii i i i i  `- Re: Halting Problem is wrong two different ways1Richard Damon
5 Jun 24 i ii i i i `* Re: Halting Problem is wrong two different ways15John Smith
5 Jun 24 i ii i i i  `* Re: Halting Problem is wrong two different ways14olcott
5 Jun 24 i ii i i i   +* Re: Halting Problem is wrong two different ways3John Smith
5 Jun 24 i ii i i i   i+- Re: Halting Problem is wrong two different ways1olcott
5 Jun 24 i ii i i i   i`- Re: Halting Problem is wrong two different ways1joes
5 Jun 24 i ii i i i   +* Re: Halting Problem is wrong two different ways6joes
6 Jun 24 i ii i i i   i`* Re: Halting Problem is wrong two different ways --very stupid5olcott
6 Jun 24 i ii i i i   i +- Re: Halting Problem is wrong two different ways --very stupid1Richard Damon
6 Jun 24 i ii i i i   i `* Re: Halting Problem is wrong two different ways --very stupid3Mikko
6 Jun 24 i ii i i i   i  `* Re: Halting Problem is wrong two different ways --very stupid2olcott
7 Jun 24 i ii i i i   i   `- Re: Halting Problem is wrong two different ways --very stupid1Richard Damon
6 Jun 24 i ii i i i   +- Re: Halting Problem is wrong two different ways1Richard Damon
6 Jun 24 i ii i i i   `* Re: Halting Problem is wrong two different ways3Mikko
6 Jun 24 i ii i i i    `* Re: Halting Problem is wrong two different ways2olcott
7 Jun 24 i ii i i i     `- Re: Halting Problem is wrong two different ways1Richard Damon
5 Jun 24 i ii i i +- Re: Halting Problem is wrong two different ways1Richard Damon
5 Jun 24 i ii i i `* Re: Halting Problem is wrong two different ways17Fred. Zwarts
5 Jun 24 i ii i i  `* Re: Halting Problem is wrong two different ways16olcott
5 Jun 24 i ii i i   +* Re: Halting Problem is wrong two different ways7Fred. Zwarts
6 Jun 24 i ii i i   i`* Re: Halting Problem is wrong two different ways6olcott
6 Jun 24 i ii i i   i `* Re: Halting Problem is wrong two different ways5Fred. Zwarts
6 Jun 24 i ii i i   i  `* Re: Halting Problem is wrong two different ways4olcott
6 Jun 24 i ii i i   i   `* Re: Halting Problem is wrong two different ways3Fred. Zwarts
6 Jun 24 i ii i i   i    +- Re: Halting Problem is wrong two different ways1olcott
6 Jun 24 i ii i i   i    `- Re: Halting Problem is wrong two different ways1immibis
6 Jun 24 i ii i i   +- Re: Halting Problem is wrong two different ways1Richard Damon
6 Jun 24 i ii i i   `* Re: Halting Problem is wrong two different ways7Mikko
6 Jun 24 i ii i i    `* Re: Halting Problem is wrong two different ways6olcott
6 Jun 24 i ii i i     +* Re: Halting Problem is wrong two different ways4Mikko
6 Jun 24 i ii i i     i`* Re: Halting Problem is wrong two different ways3olcott
7 Jun 24 i ii i i     i +- Re: Halting Problem is wrong two different ways1Richard Damon
7 Jun 24 i ii i i     i `- Re: Halting Problem is wrong two different ways1Mikko
7 Jun 24 i ii i i     `- Re: Halting Problem is wrong two different ways1Richard Damon
5 Jun 24 i ii i `* Re: Halting Problem is wrong two different ways23Mikko
5 Jun 24 i ii i  `* Re: Halting Problem is wrong two different ways22olcott
5 Jun 24 i ii i   +- Re: Halting Problem is wrong two different ways1joes
6 Jun 24 i ii i   +- Re: Halting Problem is wrong two different ways1Richard Damon
6 Jun 24 i ii i   +* Re: Halting Problem is wrong two different ways18Mikko
6 Jun 24 i ii i   i`* Re: Halting Problem is wrong two different ways17olcott
6 Jun 24 i ii i   i `* Re: Halting Problem is wrong two different ways16Mikko
6 Jun 24 i ii i   i  `* Re: Halting Problem is wrong two different ways15olcott
7 Jun 24 i ii i   i   `* Re: Halting Problem is wrong two different ways14Mikko
7 Jun 24 i ii i   i    `* Re: Halting Problem is wrong two different ways13olcott
7 Jun 24 i ii i   i     +- Re: Halting Problem is wrong two different ways1Richard Damon
7 Jun 24 i ii i   i     +* Re: Halting Problem is wrong two different ways8joes
8 Jun 24 i ii i   i     i`* Re: Halting Problem is wrong two different ways7olcott
8 Jun 24 i ii i   i     i `* Re: Halting Problem is wrong two different ways6Mikko
8 Jun 24 i ii i   i     i  `* Re: Halting Problem is wrong two different ways5olcott
8 Jun 24 i ii i   i     i   +- Re: Halting Problem is wrong two different ways1Richard Damon
9 Jun 24 i ii i   i     i   `* Re: Halting Problem is wrong two different ways3Mikko
8 Jun 24 i ii i   i     `* Re: Halting Problem is wrong two different ways3Mikko
7 Jun 24 i ii i   `- Re: Halting Problem is wrong two different ways1immibis
4 Jun 24 i ii `- Re: Why does Olcott care about simulation, anyway? --- Ben's Review1immibis
3 Jun 24 i i+* Re: Why does Olcott care about simulation, anyway? --- Ben's Review201Fred. Zwarts
4 Jun 24 i i`- Re: Why does Olcott care about simulation, anyway? --- Ben's Review1Richard Damon
3 Jun 24 i `- Re: Why does Olcott care about simulation, anyway?1Mike Terry
3 Jun 24 +* Re: Why does Olcott care about simulation, anyway?20Fred. Zwarts
3 Jun 24 `- Re: Why does Olcott care about simulation, anyway?1Mikko

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal