diff --git a/com.oracle.truffle.r.test/src/com/oracle/truffle/r/test/ExpectedTestOutput.test b/com.oracle.truffle.r.test/src/com/oracle/truffle/r/test/ExpectedTestOutput.test index 004520f152ad296fd97931f372ae639913edd6cd..c96eb6ba63a6fc1ca4b41104a413aaeefca5b1e7 100644 --- a/com.oracle.truffle.r.test/src/com/oracle/truffle/r/test/ExpectedTestOutput.test +++ b/com.oracle.truffle.r.test/src/com/oracle/truffle/r/test/ExpectedTestOutput.test @@ -11944,13 +11944,197 @@ c 2 a c 1 7 42 +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ attributes(cbind(1L)) } +$dim +[1] 1 1 + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ attributes(cbind(1L, 2L)) } +$dim +[1] 1 2 + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ attributes(cbind(NULL, integer(0))) } +$dim +[1] 0 2 + +$dimnames +$dimnames[[1]] +NULL + +$dimnames[[2]] +NULL + + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ attributes(cbind(c(1), integer(0))) } +$dim +[1] 1 1 + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ attributes(cbind(c(1L, 2L))) } +$dim +[1] 2 1 + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ attributes(cbind(integer(0))) } +$dim +[1] 0 1 + +$dimnames +$dimnames[[1]] +NULL + +$dimnames[[2]] +NULL + + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ attributes(cbind(integer(0), integer(0))) } +$dim +[1] 0 2 + +$dimnames +$dimnames[[1]] +NULL + +$dimnames[[2]] +NULL + + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ attributes(cbind(list())) } +$dim +[1] 0 1 + +$dimnames +$dimnames[[1]] +NULL + +$dimnames[[2]] +NULL + + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ attributes(cbind(list(1L, 2L))) } +$dim +[1] 2 1 + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ attributes(cbind(matrix())) } +$dim +[1] 1 1 + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ attributes(cbind(matrix(1L, 2L))) } +$dim +[1] 2 1 + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ attributes(cbind(structure(1:4, dim=c(2,2)), 1L)) } +$dim +[1] 2 3 + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ attributes(cbind(structure(1:4, dim=c(2,2), dimnames=list(c('y1', 'y2'), c('x1', 'x2'))), 1L)) } +$dim +[1] 2 3 + +$dimnames +$dimnames[[1]] +[1] "y1" "y2" + +$dimnames[[2]] +[1] "x1" "x2" "" + + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ attributes(cbind(structure(1:4, dim=c(2,2), dimnames=list(y=c('y1', 'y2'), x=c('x1', 'x2'))), 1L)) } +$dim +[1] 2 3 + +$dimnames +$dimnames[[1]] +[1] "y1" "y2" + +$dimnames[[2]] +[1] "x1" "x2" "" + + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ attributes(cbind(structure(1:4, dim=c(2,2), dimnames=list(y=c('y1', 'y2'), x=c('x1', 'x2'))), integer(0))) } +$dim +[1] 2 2 + +$dimnames +$dimnames[[1]] +[1] "y1" "y2" + +$dimnames[[2]] +[1] "x1" "x2" + + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ cbind(NULL, integer(0)) } + [,1] [,2] + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ cbind(c(1), integer(0)) } + [,1] +[1,] 1 + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ cbind(integer(0), integer(0)) } + [,1] [,2] + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ cbind(structure(1:4, dim=c(2,2)), 1L) } + [,1] [,2] [,3] +[1,] 1 3 1 +[2,] 2 4 1 + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ cbind(structure(1:4, dim=c(2,2), dimnames=list(c('y1', 'y2'), c('x1', 'x2'))), 1L) } + x1 x2 +y1 1 3 1 +y2 2 4 1 + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ cbind(structure(1:4, dim=c(2,2), dimnames=list(y=c('y1', 'y2'), x=c('x1', 'x2'))), 1L) } + x1 x2 +y1 1 3 1 +y2 2 4 1 + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testDimnames# +#{ cbind(structure(1:4, dim=c(2,2), dimnames=list(y=c('y1', 'y2'), x=c('x1', 'x2'))), integer(0)) } + x1 x2 +y1 1 3 +y2 2 4 + ##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testGenericDispatch# #{ v <- 1; cbind.foo <- function(...) 'foo'; cbind(v) } v [1,] 1 ##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testGenericDispatch# -#{ v <- 1; class(v) <- 'foo'; assign('cbind.foo', function(x) {'foo'}, envir=.__S3MethodsTable__.); cbind(v) ; rm('cbind.foo', envir=.__S3MethodsTable__.)} +#{ v <- 1; class(v) <- 'foo'; assign('cbind.foo', function(x) {'foo'}, envir=.__S3MethodsTable__.); result <- cbind(v) ; rm('cbind.foo', envir=.__S3MethodsTable__.); result;} +[1] "foo" ##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testGenericDispatch# #{ v <- 1; class(v) <- 'foo'; cbind(v) } @@ -12033,6 +12217,59 @@ Error in cbind(deparse.level, ...) : argument 'x' must be a raw vector #{ v1 <- 1; class(v1) <- 'foo1'; v2 <- 2; class(v2) <- 'foo2'; cbind.foo2 <- function(...) 'foo2'; cbind(v1, v2) } [1] "foo2" +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testRetType# +#dput(cbind(NULL)) +NULL + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testRetType# +#dput(cbind(NULL, NULL, double(0))) +structure(numeric(0), .Dim = c(0L, 3L), .Dimnames = list(NULL, + NULL)) + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testRetType# +#dput(cbind(NULL, NULL, double(0), character(0))) +structure(character(0), .Dim = c(0L, 4L), .Dimnames = list(NULL, + NULL)) + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testRetType# +#dput(cbind(NULL, NULL, double(0), integer(0))) +structure(numeric(0), .Dim = c(0L, 4L), .Dimnames = list(NULL, + NULL)) + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testRetType# +#dput(cbind(NULL, NULL, double(0), integer(0), character(0))) +structure(character(0), .Dim = c(0L, 5L), .Dimnames = list(NULL, + NULL)) + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testRetType# +#dput(cbind(NULL, NULL, integer(0))) +structure(integer(0), .Dim = c(0L, 3L), .Dimnames = list(NULL, + NULL)) + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testRetType# +#dput(cbind(NULL, NULL, integer(0), double(0))) +structure(numeric(0), .Dim = c(0L, 4L), .Dimnames = list(NULL, + NULL)) + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testRetType# +#dput(cbind(NULL, integer(0))) +structure(integer(0), .Dim = c(0L, 2L), .Dimnames = list(NULL, + NULL)) + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testRetType# +#dput(cbind(c(NULL, NULL), integer(0))) +structure(integer(0), .Dim = c(0L, 2L), .Dimnames = list(NULL, + NULL)) + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testRetType# +#dput(cbind(integer(0))) +structure(integer(0), .Dim = 0:1, .Dimnames = list(NULL, NULL)) + +##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testRetType# +#dput(cbind(integer(0), NULL, NULL)) +structure(integer(0), .Dim = c(0L, 3L), .Dimnames = list(NULL, + NULL)) + ##com.oracle.truffle.r.test.builtins.TestBuiltin_cbind.testcbind1# #argv <- list(748L, c(5.08759633523238, 4.0943445622221, 5.66642668811243, 3.43398720448515), c(1L, 1L, 1L, 1L), 1L, c(FALSE, TRUE, TRUE, TRUE), c(0, 1, 0, 1), c(0, 1, 1, 1), c(0, 1, 0, 1), c(FALSE, FALSE, TRUE, FALSE), c(FALSE, FALSE, FALSE, TRUE));do.call('cbind', argv) [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10] @@ -16529,6 +16766,18 @@ a[a <- TRUE] #{ x<-expression(1); deparse(x) } [1] "expression(1)" +##com.oracle.truffle.r.test.builtins.TestBuiltin_deparse.testDeparseStructure# +#{ deparse(structure(.Data=c(1,2))) } +[1] "c(1, 2)" + +##com.oracle.truffle.r.test.builtins.TestBuiltin_deparse.testDeparseStructure# +#{ deparse(structure(.Data=c(1,2), attr1=c(1))) } +[1] "structure(c(1, 2), attr1 = 1)" + +##com.oracle.truffle.r.test.builtins.TestBuiltin_deparse.testDeparseStructure# +#{ deparse(structure(.Data=c(1,2), attr1=c(1), attr2=c(2))) } +[1] "structure(c(1, 2), attr1 = 1, attr2 = 2)" + ##com.oracle.truffle.r.test.builtins.TestBuiltin_deparse.testdeparse1# #argv <- list(quote(rsp), 60L, FALSE, 69, -1L); .Internal(deparse(argv[[1]], argv[[2]], argv[[3]], argv[[4]], argv[[5]])) [1] "rsp" @@ -42095,8 +42344,167 @@ Error in rawToBits(stdout()) : argument 'x' must be a raw vector #argv <- structure(list(x = as.raw(c(115, 116, 114, 105, 110, 103))), .Names = 'x');do.call('rawToChar', argv) [1] "string" +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testDimnames# +#{ attributes(rbind(1L)) } +$dim +[1] 1 1 + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testDimnames# +#{ attributes(rbind(1L, 2L)) } +$dim +[1] 2 1 + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testDimnames# +#{ attributes(rbind(NULL, integer(0))) } +$dim +[1] 2 0 + +$dimnames +$dimnames[[1]] +NULL + +$dimnames[[2]] +NULL + + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testDimnames# +#{ attributes(rbind(c(1), integer(0))) } +$dim +[1] 1 1 + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testDimnames# +#{ attributes(rbind(c(1L, 2L))) } +$dim +[1] 1 2 + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testDimnames# +#{ attributes(rbind(integer(0))) } +$dim +[1] 1 0 + +$dimnames +$dimnames[[1]] +NULL + +$dimnames[[2]] +NULL + + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testDimnames# +#{ attributes(rbind(integer(0), integer(0))) } +$dim +[1] 2 0 + +$dimnames +$dimnames[[1]] +NULL + +$dimnames[[2]] +NULL + + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testDimnames# +#{ attributes(rbind(structure(1:4, dim=c(2,2)), 1L)) } +$dim +[1] 3 2 + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testDimnames# +#{ attributes(rbind(structure(1:4, dim=c(2,2), dimnames=list(c('y1', 'y2'), c('x1', 'x2'))), 1L)) } +$dim +[1] 3 2 + +$dimnames +$dimnames[[1]] +[1] "y1" "y2" "" + +$dimnames[[2]] +[1] "x1" "x2" + + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testDimnames# +#{ attributes(rbind(structure(1:4, dim=c(2,2), dimnames=list(y=c('y1', 'y2'), x=c('x1', 'x2'))), 1L)) } +$dim +[1] 3 2 + +$dimnames +$dimnames[[1]] +[1] "y1" "y2" "" + +$dimnames[[2]] +[1] "x1" "x2" + + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testDimnames# +#{ attributes(rbind(structure(1:4, dim=c(2,2), dimnames=list(y=c('y1', 'y2'), x=c('x1', 'x2'))), integer(0))) } +$dim +[1] 2 2 + +$dimnames +$dimnames[[1]] +[1] "y1" "y2" + +$dimnames[[2]] +[1] "x1" "x2" + + + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testDimnames# +#{ rbind(NULL, integer(0)) } + +[1,] +[2,] + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testDimnames# +#{ rbind(c(1), integer(0)) } + [,1] +[1,] 1 + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testDimnames# +#{ rbind(integer(0), integer(0)) } + +[1,] +[2,] + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testDimnames# +#{ rbind(structure(1:4, dim=c(2,2)), 1L) } + [,1] [,2] +[1,] 1 3 +[2,] 2 4 +[3,] 1 1 + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testDimnames# +#{ rbind(structure(1:4, dim=c(2,2), dimnames=list(c('y1', 'y2'), c('x1', 'x2'))), 1L) } + x1 x2 +y1 1 3 +y2 2 4 + 1 1 + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testDimnames# +#{ rbind(structure(1:4, dim=c(2,2), dimnames=list(y=c('y1', 'y2'), x=c('x1', 'x2'))), 1L) } + x1 x2 +y1 1 3 +y2 2 4 + 1 1 + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testDimnames# +#{ rbind(structure(1:4, dim=c(2,2), dimnames=list(y=c('y1', 'y2'), x=c('x1', 'x2'))), integer(0)) } + x1 x2 +y1 1 3 +y2 2 4 + ##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testGenericDispatch# -#{ v <- 1; class(v) <- 'foo'; assign('rbind.foo', function(x) {'foo'}, envir=.__S3MethodsTable__.); rbind(v) ; rm('rbind.foo', envir=.__S3MethodsTable__.)} +#{ v <- 1; class(v) <- 'foo'; assign('rbind.foo', function(x) {'foo'}, envir=.__S3MethodsTable__.); result <- rbind(v) ; rm('rbind.foo', envir=.__S3MethodsTable__.); result;} +[1] "foo" ##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testGenericDispatch# #{ v <- 1; class(v) <- 'foo'; rbind(v) } @@ -42408,6 +42816,60 @@ B 2 4 a 7 c 42 +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testRetType# +#dput(rbind(NULL)) +NULL + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testRetType# +#dput(rbind(NULL, NULL, double(0))) +structure(numeric(0), .Dim = c(3L, 0L), .Dimnames = list(NULL, + NULL)) + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testRetType# +#dput(rbind(NULL, NULL, double(0), character(0))) +structure(character(0), .Dim = c(4L, 0L), .Dimnames = list(NULL, + NULL)) + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testRetType# +#dput(rbind(NULL, NULL, double(0), integer(0))) +structure(numeric(0), .Dim = c(4L, 0L), .Dimnames = list(NULL, + NULL)) + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testRetType# +#dput(rbind(NULL, NULL, double(0), integer(0), character(0))) +structure(character(0), .Dim = c(5L, 0L), .Dimnames = list(NULL, + NULL)) + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testRetType# +#dput(rbind(NULL, NULL, integer(0))) +structure(integer(0), .Dim = c(3L, 0L), .Dimnames = list(NULL, + NULL)) + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testRetType# +#dput(rbind(NULL, NULL, integer(0), double(0))) +structure(numeric(0), .Dim = c(4L, 0L), .Dimnames = list(NULL, + NULL)) + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testRetType# +#dput(rbind(NULL, integer(0))) +structure(integer(0), .Dim = c(2L, 0L), .Dimnames = list(NULL, + NULL)) + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testRetType# +#dput(rbind(c(NULL, NULL), integer(0))) +structure(integer(0), .Dim = c(2L, 0L), .Dimnames = list(NULL, + NULL)) + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testRetType# +#dput(rbind(integer(0))) +structure(integer(0), .Dim = c(1L, 0L), .Dimnames = list(NULL, + NULL)) + +##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testRetType# +#dput(rbind(integer(0), NULL, NULL)) +structure(integer(0), .Dim = c(3L, 0L), .Dimnames = list(NULL, + NULL)) + ##com.oracle.truffle.r.test.builtins.TestBuiltin_rbind.testrbind1# #argv <- list(structure(c(3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 11, 11, 13, 13, 13, 13, 13, 13, 13, 14, 14, 14, 14, 16, 16, 31, 31, 31, 33, 33, 43, 43, 43, 61, 61, 61, 62, 62, 106, 106, 110, 110, 110, 110, 163, 163, 165, 165, 165, 168, 168, 172, 172, 172, 204, 204, 206, 206, 206, 206, 206, 211, 211, 241, 241, 241, 241, 244, 244, 249, 249, 250, 250, 250, 250, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 256, 256, 265, 265, 265, 265, 265, 265, 265, 265, 265, 267, 267, 267, 269, 269, 269, 291, 291, 291, 291, 291, 291, 291, 312, 312, 312, 312, 312, 314, 314, 314, 314, 314, 2.484906649788, 6.27476202124194, 3.97029191355212, 3.98898404656427, 4.52178857704904, 0, 2.30258509299405, 4.59511985013459, 1.6094379124341, 2.94443897916644, 1.94591014905531, 2.99573227355399, 4.36944785246702, 1.38629436111989, 2.39789527279837, 3.98898404656427, 2.07944154167984, 5.64897423816121, 5.75574221358691, 2.89037175789616, 3.09104245335832, 4.70953020131233, 4.98360662170834, 1.6094379124341, 1.6094379124341, 4.70048036579242, 1.6094379124341, 4.54329478227, 1.6094379124341, 4.49980967033027, 5.62762111369064, 5.11799381241676, 2.39789527279837, 6.28785856016178, 5.4380793089232, 3.63758615972639, 5.76205138278018, 2.83321334405622, 5.7037824746562, 5.90263333340137, 3.40119738166216, 3.63758615972639, 4.31748811353631, 5.58724865840025, 5.32787616878958, 4.06044301054642, 6.22059017009974, 6.20455776256869, 5.2040066870768, 6.20253551718792, 3.78418963391826, 2.94443897916644, 2.63905732961526, 6.24804287450843, 2.63905732961526, 5.74620319054015, 1.79175946922805, 5.44241771052179, 4.99721227376411, 5.93753620508243, 4.02535169073515, 4.74493212836325, 5.90536184805457, 6.00388706710654, 4.91998092582813, 5.73979291217923, 3.13549421592915, 3.17805383034795, 3.58351893845611, 4.89783979995091, 4.49980967033027, 6.0913098820777, 5.75257263882563, 2.30258509299405, 2.77258872223978, 5.28826703069454, 6.10924758276437, 4.74493212836325, 6.16331480403464, 4.57471097850338, 3.55534806148941, 1.38629436111989, 4.46590811865458, 5.93224518744801, 0.693147180559945, 3.95124371858143, 4.0943445622221, 3.17805383034795, 2.484906649788, 5.15905529921453, 3.80666248977032, 2.484906649788, 3.3322045101752, 1.94591014905531, 2.77258872223978, 4.71849887129509, 6.23244801655052, 2.99573227355399, 3.71357206670431, 3.36729582998647, 5.64897423816121, 3.55534806148941, 0.693147180559945, 3.04452243772342, 4.30406509320417, 2.56494935746154, 3.61091791264422, 4.69134788222914, 5.93753620508243, 4.95582705760126, -0.693147180559945, 3.87120101090789, 6.31896811374643, 6.06145691892802, 1.79175946922805, 2.19722457733622, 2.07944154167984, 2.07944154167984, 1.94591014905531, 4.51085950651685, 5.85507192220243, 4.57471097850338, 0.693147180559945, 1.6094379124341, 4.36944785246702, 5.36129216570943, 4.40671924726425, 4.85981240436167, 3.61091791264422, 3.73766961828337, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1), .Dim = c(130L, 10L)), structure(c(316, 316, 316, 5.3890717298165, 2.39789527279837, 5.67332326717149, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0), .Dim = c(3L, 10L)));do.call('rbind', argv) [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10]