search for: l150

Displaying 5 results from an estimated 5 matches for "l150".

Did you mean: 150
2003 Dec 11
0
Re: [R] chisq.test freezing on certain inputs (PR#5701)
...[ic] + fact[idp - 1] - fact[ie] - fact[nlmp - 1] - fact[igp - 1] - fact[ihp - 1] - fact[iip - 1]); if (x >= dummy) { goto L160; } sumprb = x; y = x; y is never checked for zero and later on L150: if (lsm) { goto L155; } /* Decrement entry in row L, column M */ j = nll * (ii + nll); if (j == 0) { goto L154; } --nll; y = y * j / (double) ((id - nll) * (ia - nll));...
2003 Dec 11
2
chisq.test freezing on certain inputs
Hello everybody, I'm running R 1.8.1 on both Linux and OS X compiled with gcc 3.2.2 and 3.3, respectively. The following call seems to freeze the interpreter on both systems: > chisq.test(matrix(c(233, 580104, 3776, 5786104), 2, 2), simulate.p.value=TRUE) By freeze, I mean, the function call never returns (running > 10 hours so far), the process is unresponsive to SIGINT (but I
2011 Apr 06
1
Time to fix PartialRenderer#partial_path
...trollers for an engine will be nested and it makes doing <%= render @thing %> in your code (and anybody else''s) extremely tedious and impossible without specifying the :partial to use. https://github.com/rails/rails/blob/master/actionpack/lib/action_view/renderer/partial_renderer.rb#L150-159 Normally this function grabs the partial to use with model_name.partial_path which is great for default views (things/ _thing.html.erb) but as soon as you call it from a controller that is nested it ends up giving you a path like controller_namespace/things/ _thing.html.erb. I can see the advan...
2015 Jul 27
0
Any possibilities to generate SSSP by edge weights rather than number of hops
Hello, The code here https://github.com/gsliepen/tinc/blob/master/src/graph.c#L150-L233 looks like the SSSP for indirect data forwarding is generated by looking for the minimal number of hops. Is there any possibilities or plan to generate the SSSP by using the weights of edges. And, is there any plan to add an option to allow indirect data forwards if the direct UDP channel is...
2010 Feb 16
1
[PATCH] Build: Make changelog action call git directly without Git module
The changelog action needs to checkout git2cl as a submodule. For some reason, when called through the Git module, command('submodule', 'update') was doing something unfathomable, and different to just calling 'git submodule update'. As Git is just a command line wrapper anyway, I've sidestepped this by just calling the command directly. --- Build.PL | 18