Setting ⎕RL does not appear to work under MiServer
7 posts
• Page 1 of 1
Setting ⎕RL does not appear to work under MiServer
Hi,
Im using "?" under MiServer (for my ANT visualisation).
To "debug" the ants, I need to be able to reproduce the same run repeatedly to see the effect of a change in my code, so Im setting ⎕RL to try to ensure the same random numbers from "?".
However, when I try the identical code twice under MiServer, I am getting different results.
I assume that MiServer is resetting ⎕RL, or using "?" which is causing the problems Im having.
If it is (and it is not poor coding at my end, which I cant rule out), can a isolate my code from MiServer use of "?" or ⎕RL ?
Ray
Im using "?" under MiServer (for my ANT visualisation).
To "debug" the ants, I need to be able to reproduce the same run repeatedly to see the effect of a change in my code, so Im setting ⎕RL to try to ensure the same random numbers from "?".
However, when I try the identical code twice under MiServer, I am getting different results.
I assume that MiServer is resetting ⎕RL, or using "?" which is causing the problems Im having.
If it is (and it is not poor coding at my end, which I cant rule out), can a isolate my code from MiServer use of "?" or ⎕RL ?
Ray
Ray Cannon
Please excuse any smelling pisstakes.
Please excuse any smelling pisstakes.
-
ray - Posts: 238
- Joined: Wed Feb 24, 2010 12:24 am
- Location: Blackwater, Camberley. UK
Re: Setting ⎕RL does not appear to work under MiServer
Hi Ray,
MiServer does use ⎕RL and ? in the HtmlElement class in order to generate random HTML element ids when needed. The MiPage class is derived from the HtmlPage class which is in turn derived from the HtmlElement class. Your page is based on the MiPage class. ⎕RL has namespace scope so I can think of a couple possible ways to create repeatable scenarios, but it would be helpful to see how you've organized your code. If you have your code in a public repository somewhere, let me know, otherwise, email me and we'll work out how I can take a look at what you're doing.
Best regards,
/Brian
MiServer does use ⎕RL and ? in the HtmlElement class in order to generate random HTML element ids when needed. The MiPage class is derived from the HtmlPage class which is in turn derived from the HtmlElement class. Your page is based on the MiPage class. ⎕RL has namespace scope so I can think of a couple possible ways to create repeatable scenarios, but it would be helpful to see how you've organized your code. If you have your code in a public repository somewhere, let me know, otherwise, email me and we'll work out how I can take a look at what you're doing.
Best regards,
/Brian
-
Brian|Dyalog - Posts: 120
- Joined: Thu Nov 26, 2009 4:02 pm
- Location: West Henrietta, NY
Re: Setting ⎕RL does not appear to work under MiServer
Hi Brian,
Thank you for your quick response.
I do have a (2 month out of date) version on Git-Hub at https://github.com/RayCannon/Ambiants
The class called by MiServer is "Hex", and is to be found in "RayCannon-patch-1" under "hex.dyalog".
Because of my personal dislike of namespace SCRIPTS (functions in scripts loose their original workspace timestamp) the hex class functions are all copied in via a ":Include #.Combat_fns" statement in hex.dyalog .
I have tried adding a "⌷RL ← 16807" line in the hex namespace, but without apparent success.
The workspace "hexserver32.dws" sets up and then starts up the "hex" class under MiServer.
When NOT "debugging" Ant code I set "⎕RL←1 1" as I do require random behaviour under normal usage.
Thanks for any suggestions,
Ray
Thank you for your quick response.
I do have a (2 month out of date) version on Git-Hub at https://github.com/RayCannon/Ambiants
The class called by MiServer is "Hex", and is to be found in "RayCannon-patch-1" under "hex.dyalog".
Because of my personal dislike of namespace SCRIPTS (functions in scripts loose their original workspace timestamp) the hex class functions are all copied in via a ":Include #.Combat_fns" statement in hex.dyalog .
I have tried adding a "⌷RL ← 16807" line in the hex namespace, but without apparent success.
The workspace "hexserver32.dws" sets up and then starts up the "hex" class under MiServer.
When NOT "debugging" Ant code I set "⎕RL←1 1" as I do require random behaviour under normal usage.
Thanks for any suggestions,
Ray
Ray Cannon
Please excuse any smelling pisstakes.
Please excuse any smelling pisstakes.
-
ray - Posts: 238
- Joined: Wed Feb 24, 2010 12:24 am
- Location: Blackwater, Camberley. UK
Re: Setting ⎕RL does not appear to work under MiServer
Hi Ray! Have you tried creating a separate namespace and using it to "source" random numbers?
⎕RL has namespace scope, as "proved" by the following sequence:
⎕RL has namespace scope, as "proved" by the following sequence:
- Code: Select all
#.(Random←⎕NS '').⎕RL←22
#.Random.? 6 6 6
5 2 3
#.Random.⎕RL←22
#.Random.? 6 ⍝ Expect sequence to restart from 5
5
?6 ⍝ Generate random number outside the namespace
3
#.Random.? 6 6 ⍝ Continue the sequence
2 3
-
Morten|Dyalog - Posts: 458
- Joined: Tue Sep 09, 2008 3:52 pm
Re: Setting ⎕RL does not appear to work under MiServer
Thank you Morten.
So simple, I already had a namespace "G" for global variables, so I simple replaced "⎕RL←1602" by "G.⎕RL←1602" and "?" by "G.?" and with just those 4 extra character it works fine.
I don't really understand why setting ⎕RL in the class (which is also a Namespace) did not achieve the same effect, but I'm very happy with the result.
(I have in the past played with namespaces to localise the effect of ⎕IO, eg with "⎕IO←1" set then creating a namespace called "IO" setting "IO.⎕IO←0", so "IO.⍳6" gives 0 1 2 3 4 5 when required without knock on effects on other ⎕IO settings.)
Thanking both Brian and Morten for your help
Ray
So simple, I already had a namespace "G" for global variables, so I simple replaced "⎕RL←1602" by "G.⎕RL←1602" and "?" by "G.?" and with just those 4 extra character it works fine.
I don't really understand why setting ⎕RL in the class (which is also a Namespace) did not achieve the same effect, but I'm very happy with the result.
(I have in the past played with namespaces to localise the effect of ⎕IO, eg with "⎕IO←1" set then creating a namespace called "IO" setting "IO.⎕IO←0", so "IO.⍳6" gives 0 1 2 3 4 5 when required without knock on effects on other ⎕IO settings.)
Thanking both Brian and Morten for your help
Ray
Ray Cannon
Please excuse any smelling pisstakes.
Please excuse any smelling pisstakes.
-
ray - Posts: 238
- Joined: Wed Feb 24, 2010 12:24 am
- Location: Blackwater, Camberley. UK
Re: Setting ⎕RL does not appear to work under MiServer
ray wrote:I don't really understand why setting ⎕RL in the class (which is also a Namespace) did not achieve the same effect
The reason for this is that the class inherits some MiServer base classes, and those classes also use random numbers - and that is happening in the same namespace. Arguably, one should log an issue against MiServer and ask that *it* start using a different namespace, so that it does not mutate the environment that application code is running in.
-
Morten|Dyalog - Posts: 458
- Joined: Tue Sep 09, 2008 3:52 pm
Re: Setting ⎕RL does not appear to work under MiServer
I don't really understand why setting ⎕RL in the class (which is also a Namespace) did not achieve the same effect, but I'm very happy with the result.
Ray, since you said that a class is also a namespace I guess that with a class "Foo" you did
Foo.⎕RL←<integer>
A class is NOT a namespace. The two exist in parallel, sharing the same name. (Yes, really!)
So setting Foo.⎕RL has no bearing on the value of ⎕RL inside the class. It sets the value of ⎕RL in the namespace that accompanies the class.
When you think about public and private stuff it becomes apparent: ⎕RL in the class is of course private, and there is no way to make it public, meaning that referencing it cannot by definition reveal the value of ⎕RL inside the class. For the same reason assigning a value is impossible.
When you do something like this it will work:
:Class Foo
⎕RL←<integer>
...
:EndClass
This would also work (in the session):
Foo.⎕rl←<integer>
Foo.? 100
That's because both statements are executed inside the namespace, not inside the class.
-
kai - Posts: 138
- Joined: Thu Jun 18, 2009 5:10 pm
- Location: Hillesheim / Germany
7 posts
• Page 1 of 1
Who is online
Users browsing this forum: No registered users and 1 guest
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group