Displaying 3 results from an estimated 3 matches for "relnodes".
Did you mean:
refnodes
2002 Apr 15
8
Problem
Hello! If I have a matrix as 1 2
2 3
and I want to change the value 2 in 0, what can I do?
Thank you
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !)
2015 Sep 03
2
Fuzzing complex programs
On Thu, Sep 3, 2015 at 6:45 PM, Kostya Serebryany <kcc at google.com> wrote:
> Did you build the Postgres code with -fsanitize-coverage=... ?
Yes:
CC = clang
CFLAGS = -Wall -Wmissing-prototypes -Wpointer-arith
-Wdeclaration-after-statement -Wendif-labels
-Wmissing-format-attribute -Wformat-security -fno-strict-aliasing
-fwrapv -Wno-unused-command-line-argument -g -O0 -fsanitize=address
2015 Sep 03
2
Fuzzing complex programs
Looks correct.
Can you post the output of libFuzzer here?
Something like
#0 READ cov: 0 bits: 0 units: 97701 exec/s: 0
#1 pulse cov: 732 bits: 0 units: 97701 exec/s: 0
#2 pulse cov: 737 bits: 0 units: 97701 exec/s: 1
#4 pulse cov: 858 bits: 0 units: 97701 exec/s: 2
#8 pulse cov: 880 bits: 0 units: 97701 exec/s: 4
On Thu, Sep 3, 2015 at 10:50 AM, Greg Stark