Don Guinn wrote:
So is there or is there not a problem with f and h running in either order
or in parallel?

There should be no problem if f and h are side-effect free otherwise unsure.
eg.

f=: 3 : 'a=: a + y'
h=: 3 : 'a=: a * y'
g=: +

   a=: 1
   (f g h) 10
30
   a=: 1
   (f 10) g (h 10)
30
   a=: 1
   c g (h 10) [ c=: f 10
121

--
regards,
bill
----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

Reply via email to