Displaying 2 results from an estimated 2 matches for "compute_identical".
Did you mean:
r_compute_identical
2006 Jun 02
2
Helping out - simple bugs to help familiarize with R design, source, etc
Hi All,
Well I finally have found the time to get svn working and I have
successfully built my own tuned atlas (multi-threaded version) libs
and have both the r-devel and r-patched trees building daily on my box.
The problem is I still do not have a good idea of the layout and
design of R, and typically I "learn by doing" by trying to fix a bug
that hits me. Unfortunately ;-)
2006 Jun 03
3
More on bug 7924
...these logs.
To further analyze what is happening, I added my own routine in
main.c called DEBUG_SET_NAMED and then redefined the SET_NAMED macro
to use it and then rebuilt R.
I then fired up R under a fresh environment and running under GDB
and set a breakpoint at my DEBUG_SET_NAMED and at compute_identical
> call1 <- Quote(f(arg[[1]], arg[[1]], arg[[1]]))
So running this statement shows that SET_NAMED was run on 5 objects
of type 13,16,10,3 and with the last one being a type 6.
In all cases, but the type 6 object, named was set to 2. For the
type 6 object, named was set to 1
Breakpoin...