search for: nonassoc

Displaying 7 results from an estimated 7 matches for "nonassoc".

Did you mean: nonalloc
2012 Feb 26
1
Matrix problem to extract animal associations
...ot;ID8_ID10_" "ID9_ID10_" "ID10_ID10_" > > (AMatrix <- as.character(unique(AssocMatrix[which(DMTF==TRUE)]))) [1] "ID2_ID6" "ID6_ID2" "ID6_ID10" "ID10_ID6" > > ##Extract those individuals not in any interactions > nonassoc <- IDs[is.na(charmatch(inassoc,AMatrix))] > > (NGroups <- data.frame(ID=nonassoc,Group=1:length(nonassoc))) ID Group 1 ID1 1 2 ID3 2 3 ID4 3 4 ID5 4 5 ID7 5 6 ID8 6 7 ID9 7 > [[alternative HTML version deleted]]
2003 Sep 03
1
Another R syntax question
...d == and != in print.R's example does actually convey the actual association, in a vaguely Principia Mathematica-ish way, I have to wonder: Is R really seriously intended to swallow x == y != z without complaint? If the line %left GT GE LT LE EQ NE in src/main/gram.y were changed to %nonassoc GT GE LT LE EQ NE then the line x0 <- xm[okP]==0 != (as.numeric(Cf[okP])==0) in src/library/base/R/print.R would have to be changed to x0 <- (xm[okP]==0) != (as.numeric(Cf[okP])==0) and all things considered, surely that would be an improvement?
2016 Sep 02
0
[ANNOUNCE] intel-gpu-tools 1.16
...ix typo s/huma-readable/human-readable/ jim.bride at linux.intel.com (1): demos/intel_sprite_on: Fix connector iteration bug marius vlad (5): tests/drm_lib.sh: Extract fake getopt options so it can sourced into tests that require it. assembler/: Fix lex warnings for %empty and %nonassoc. lib/intel_chipset: Fix compilation when enabling the debugger. lib/igt_core: Print stacktrace when receiving one of the crash signals. tests/Makefile.am: Add -Wno-unused-result to tests git tag: intel-gpu-tools-1.16 http://xorg.freedesktop.org/archive/individual/app/intel-gpu-t...
2015 Dec 02
3
[PATCH 0/3] [FOR COMMENTS ONLY] Rework inspection.
This is something I've been working on: Reworking inspection so it's not a big mess of ad hoc C code, but instead uses a well-defined domain-specific language to describe how we inspect guests. The best introduction to this is the manual page, which I include below (it's also included in patch 2/3). Rich. ---------------------------------------------------------------------- NAME
2016 Feb 23
4
[PATCH v3 0/4] [FOR COMMENTS ONLY] Rework inspection.
Previously posted: https://www.redhat.com/archives/libguestfs/2015-December/msg00038.html Inspection now really succeeds on a small number of simple guests. To test it out: $ ./run guestfish -v -x -a /tmp/centos-6.img ><fs> run ><fs> debug sh "guestfs-inspection --verbose" Rich.
2015 Dec 05
6
[PATCH 0/6 v2] [FOR COMMENTS ONLY] Rework inspection.
This is a more working version. Inspection (partially) succeeds on a real guest this time :-) You can test it out on a real guest (in this case, a CentOS disk image located at /tmp/centos-6.img) by doing: $ ./run guestfish -v -x -a /tmp/centos-6.img ><fs> run ><fs> debug sh "guestfs-inspection --verbose" which will print lots of debugging, and at the end the
2016 Jan 21
8
[PATCH v3 0/6] [FOR COMMENTS ONLY] Rework inspection.
For background on this change, see: https://rwmj.wordpress.com/2015/12/06/inspection-now-with-added-prolog/ v2 was previously posted here: https://www.redhat.com/archives/libguestfs/2015-December/msg00038.html To test this patch series on a real guest, you can do: $ ./run guestfish -v -x -a /var/tmp/centos-6.img ><fs> run ><fs> debug sh "guestfs-inspection