[Distr-commits] r1406 - in branches/distr-2.9/pkg: distr/inst distr/tests/Examples distrDoc/inst distrEllipse/inst distrEx/inst distrMod/inst distrRmetrics/inst distrSim/inst distrTEst/inst distrTeach/inst
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Sun May 7 21:23:12 CEST 2023
Author: ruckdeschel
Date: 2023-05-07 21:23:11 +0200 (Sun, 07 May 2023)
New Revision: 1406
Modified:
branches/distr-2.9/pkg/distr/inst/CITATION
branches/distr-2.9/pkg/distr/inst/NEWS
branches/distr-2.9/pkg/distr/tests/Examples/distr-Ex.Rout.save
branches/distr-2.9/pkg/distrDoc/inst/CITATION
branches/distr-2.9/pkg/distrEllipse/inst/CITATION
branches/distr-2.9/pkg/distrEx/inst/CITATION
branches/distr-2.9/pkg/distrMod/inst/CITATION
branches/distr-2.9/pkg/distrRmetrics/inst/CITATION
branches/distr-2.9/pkg/distrSim/inst/CITATION
branches/distr-2.9/pkg/distrTEst/inst/CITATION
branches/distr-2.9/pkg/distrTeach/inst/CITATION
Log:
[distr-2.9] transformed CITATION files to new format, i.e., bibentry() instead of citEntry(),
c(as.person( .... ), as.person( .... ), ...), instead of as.personList(....)
Modified: branches/distr-2.9/pkg/distr/inst/CITATION
===================================================================
--- branches/distr-2.9/pkg/distr/inst/CITATION 2023-05-07 19:21:38 UTC (rev 1405)
+++ branches/distr-2.9/pkg/distr/inst/CITATION 2023-05-07 19:23:11 UTC (rev 1406)
@@ -1,13 +1,12 @@
-citHeader("To cite package distr in publications use:")
-
-citEntry(entry="Article",
+bibentry(
+ mheader = "To cite package distr in publications use:",
+ bibtype = "Article",
title = "S4 Classes for Distributions",
- author = personList(as.person("P. Ruckdeschel"),
+ author = c(as.person("P. Ruckdeschel"),
as.person("M. Kohl"),
as.person("T. Stabla"),
as.person("F. Camphausen")),
language = "English",
- year = 2006,
journal = "R News",
year = 2006,
volume = 6,
@@ -21,9 +20,11 @@
"URL https://CRAN.R-project.org/doc/Rnews/")
)
-citEntry(entry = "Article",
+bibentry(
+ mheader = "To cite package distr in publications use:",
+ bibtype = "Article",
title = "General Purpose Convolution Algorithm in {S}4 Classes by Means of FFT",
- author = personList(as.person("Peter Ruckdeschel"),
+ author = c(as.person("Peter Ruckdeschel"),
as.person("Matthias Kohl")),
journal = "Journal of Statistical Software",
year = "2014",
@@ -35,7 +36,7 @@
paste("Peter Ruckdeschel, Matthias Kohl (2014).",
"General Purpose Convolution Algorithm in S4 Classes by Means of FFT.",
"Journal of Statistical Software, 59(4), 1-25.",
- "URL http://www.jstatsoft.org/v59/i04/."),
+ "URL https://www.jstatsoft.org/v59/i04/."),
header = "If you employ convolution, please also cite:"
)
Modified: branches/distr-2.9/pkg/distr/inst/NEWS
===================================================================
--- branches/distr-2.9/pkg/distr/inst/NEWS 2023-05-07 19:21:38 UTC (rev 1405)
+++ branches/distr-2.9/pkg/distr/inst/NEWS 2023-05-07 19:23:11 UTC (rev 1406)
@@ -13,6 +13,9 @@
under the hood:
+ included pkg RobAStBase into "Enhances" in the DESCRIPTION file
+ moved some code in the help to RtoDPQ.d relying on the RNG into IGNORE_RDIFF
++ transformed CITATION file to new format, i.e., bibentry() instead of citEntry(),
+ c(as.person( .... ), as.person( .... ), ...), instead of
+ as.personList(....)
##############
v 2.9
Modified: branches/distr-2.9/pkg/distr/tests/Examples/distr-Ex.Rout.save
===================================================================
--- branches/distr-2.9/pkg/distr/tests/Examples/distr-Ex.Rout.save 2023-05-07 19:21:38 UTC (rev 1405)
+++ branches/distr-2.9/pkg/distr/tests/Examples/distr-Ex.Rout.save 2023-05-07 19:23:11 UTC (rev 1406)
@@ -1,6 +1,6 @@
-R Under development (unstable) (2022-09-25 r82916 ucrt) -- "Unsuffered Consequences"
-Copyright (C) 2022 The R Foundation for Statistical Computing
+R version 4.3.0 (2023-04-21 ucrt) -- "Already Tomorrow"
+Copyright (C) 2023 The R Foundation for Statistical Computing
Platform: x86_64-w64-mingw32/x64 (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
@@ -21,6 +21,18 @@
> source(file.path(R.home("share"), "R", "examples-header.R"))
> options(warn = 1)
> options(pager = "console")
+> base::assign(".ExTimings", "distr-Ex.timings", pos = 'CheckExEnv')
+> base::cat("name\tuser\tsystem\telapsed\n", file=base::get(".ExTimings", pos = 'CheckExEnv'))
+> base::assign(".format_ptime",
++ function(x) {
++ if(!is.na(x[4L])) x[1L] <- x[1L] + x[4L]
++ if(!is.na(x[5L])) x[2L] <- x[2L] + x[5L]
++ options(OutDec = '.')
++ format(x[1L:3L], digits = 7L)
++ },
++ pos = 'CheckExEnv')
+>
+> ### * </HEADER>
> library('distr')
Loading required package: startupmsg
:startupmsg> Utilities for Start-Up Messages (version 0.9.6)
@@ -30,7 +42,7 @@
Loading required package: sfsmisc
:distr> Object Oriented Implementation of Distributions (version
-:distr> 2.9.1)
+:distr> 2.9.2)
:distr>
:distr> Attention: Arithmetics on distribution objects are
:distr> understood as operations on corresponding random variables
@@ -64,6 +76,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: distr-package
> ### Title: distr - Object Oriented Implementation of Distributions
> ### Aliases: distr-package distr
@@ -224,6 +237,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("0distr-package", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("AbscontDistribution-class")
> ### * AbscontDistribution-class
@@ -230,6 +245,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: AbscontDistribution-class
> ### Title: Class "AbscontDistribution"
> ### Aliases: AbscontDistribution-class AffLinDistribution-class
@@ -258,6 +274,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("AbscontDistribution-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("AbscontDistribution")
> ### * AbscontDistribution
@@ -264,6 +282,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: AbscontDistribution
> ### Title: Generating function "AbscontDistribution"
> ### Aliases: AbscontDistribution
@@ -285,6 +304,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("AbscontDistribution", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("Arcsine-class")
> ### * Arcsine-class
@@ -291,6 +312,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: Arcsine-class
> ### Title: Class "Arcsine"
> ### Aliases: Arcsine-class Arcsine initialize,Arcsine-method
@@ -312,6 +334,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("Arcsine-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("Beta-class")
> ### * Beta-class
@@ -318,6 +342,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: Beta-class
> ### Title: Class "Beta"
> ### Aliases: Beta-class Beta initialize,Beta-method
@@ -350,6 +375,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("Beta-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("BetaParameter-class")
> ### * BetaParameter-class
@@ -356,6 +383,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: BetaParameter-class
> ### Title: Class "BetaParameter"
> ### Aliases: BetaParameter-class initialize,BetaParameter-method
@@ -370,6 +398,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("BetaParameter-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("Binom-class")
> ### * Binom-class
@@ -376,6 +406,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: Binom-class
> ### Title: Class "Binom"
> ### Aliases: Binom-class Binom initialize,Binom-method
@@ -404,6 +435,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("Binom-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("BinomParameter-class")
> ### * BinomParameter-class
@@ -410,6 +443,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: BinomParameter-class
> ### Title: Class "BinomParameter"
> ### Aliases: BinomParameter-class initialize,BinomParameter-method
@@ -424,6 +458,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("BinomParameter-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("Cauchy-class")
> ### * Cauchy-class
@@ -430,6 +466,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: Cauchy-class
> ### Title: Class "Cauchy"
> ### Aliases: Cauchy-class Cauchy initialize,Cauchy-method
@@ -462,6 +499,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("Cauchy-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("CauchyParameter-class")
> ### * CauchyParameter-class
@@ -468,6 +507,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: CauchyParameter-class
> ### Title: Class "CauchyParameter"
> ### Aliases: CauchyParameter-class initialize,CauchyParameter-method
@@ -482,6 +522,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("CauchyParameter-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("Chisq-class")
> ### * Chisq-class
@@ -488,6 +530,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: Chisq-class
> ### Title: Class "Chisq"
> ### Aliases: Chisq-class Chisq initialize,Chisq-method
@@ -520,6 +563,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("Chisq-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("ChisqParameter-class")
> ### * ChisqParameter-class
@@ -526,6 +571,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: ChisqParameter-class
> ### Title: Class "ChisqParameter"
> ### Aliases: ChisqParameter-class initialize,ChisqParameter-method
@@ -540,6 +586,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("ChisqParameter-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("CompoundDistribution-class")
> ### * CompoundDistribution-class
@@ -546,6 +594,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: CompoundDistribution-class
> ### Title: Class "CompoundDistribution"
> ### Aliases: CompoundDistribution-class NumbOfSummandsDistr SummandsDistr
@@ -591,6 +640,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("CompoundDistribution-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("CompoundDistribution")
> ### * CompoundDistribution
@@ -597,6 +648,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: CompoundDistribution
> ### Title: Generating function for Class "CompoundDistribution"
> ### Aliases: CompoundDistribution
@@ -657,6 +709,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("CompoundDistribution", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("ConvPow")
> ### * ConvPow
@@ -663,6 +717,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: convpow-methods
> ### Title: Distribution of the sum of univariate i.i.d r.v's
> ### Aliases: convpow convpow-methods convpow,AcDcLcDistribution-method
@@ -683,6 +738,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("ConvPow", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("DExp-class")
> ### * DExp-class
@@ -689,6 +746,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: DExp-class
> ### Title: Class "DExp"
> ### Aliases: DExp-class DExp Laplace DoubleExponential
@@ -719,6 +777,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("DExp-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("Dirac-class")
> ### * Dirac-class
@@ -725,6 +785,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: Dirac-class
> ### Title: Class "Dirac"
> ### Aliases: Dirac-class Dirac initialize,Dirac-method log,Dirac-method
@@ -752,6 +813,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("Dirac-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("DiracParameter-class")
> ### * DiracParameter-class
@@ -758,6 +821,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: DiracParameter-class
> ### Title: Class "DiracParameter"
> ### Aliases: DiracParameter-class initialize,DiracParameter-method
@@ -772,6 +836,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("DiracParameter-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("DiscreteDistribution-class")
> ### * DiscreteDistribution-class
@@ -778,6 +844,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: DiscreteDistribution-class
> ### Title: Class "DiscreteDistribution"
> ### Aliases: DiscreteDistribution-class AffLinDiscreteDistribution-class
@@ -828,6 +895,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("DiscreteDistribution-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("DiscreteDistribution")
> ### * DiscreteDistribution
@@ -834,6 +903,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: DiscreteDistribution
> ### Title: Generating function "DiscreteDistribution"
> ### Aliases: DiscreteDistribution
@@ -854,6 +924,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("DiscreteDistribution", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("DistrList-class")
> ### * DistrList-class
@@ -860,6 +932,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: DistrList-class
> ### Title: List of distributions
> ### Aliases: DistrList-class coerce,Distribution,DistrList-method
@@ -884,6 +957,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("DistrList-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("DistrList")
> ### * DistrList
@@ -890,6 +965,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: DistrList
> ### Title: Generating function for DistrList-class
> ### Aliases: DistrList
@@ -924,6 +1000,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("DistrList", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("DistrSymmList-class")
> ### * DistrSymmList-class
@@ -930,6 +1008,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: DistrSymmList-class
> ### Title: List of Symmetries for a List of Distributions
> ### Aliases: DistrSymmList-class
@@ -957,6 +1036,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("DistrSymmList-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("DistrSymmList")
> ### * DistrSymmList
@@ -963,6 +1044,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: DistrSymmList
> ### Title: Generating function for DistrSymmList-class
> ### Aliases: DistrSymmList
@@ -999,6 +1081,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("DistrSymmList", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("EllipticalSymmetry-class")
> ### * EllipticalSymmetry-class
@@ -1005,6 +1089,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: EllipticalSymmetry-class
> ### Title: Class for Elliptically Symmetric Distributions
> ### Aliases: EllipticalSymmetry-class
@@ -1019,6 +1104,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("EllipticalSymmetry-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("EllipticalSymmetry")
> ### * EllipticalSymmetry
@@ -1025,6 +1112,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: EllipticalSymmetry
> ### Title: Generating function for EllipticalSymmetry-class
> ### Aliases: EllipticalSymmetry
@@ -1048,6 +1136,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("EllipticalSymmetry", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("EmpiricalDistribution")
> ### * EmpiricalDistribution
@@ -1054,6 +1144,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: EmpiricalDistribution
> ### Title: Generating function "EmpiricalDistribution"
> ### Aliases: EmpiricalDistribution
@@ -1070,6 +1161,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("EmpiricalDistribution", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("EuclideanSpace-class")
> ### * EuclideanSpace-class
@@ -1076,6 +1169,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: EuclideanSpace-class
> ### Title: Class "EuclideanSpace"
> ### Aliases: EuclideanSpace EuclideanSpace-class
@@ -1095,6 +1189,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("EuclideanSpace-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("Exp-class")
> ### * Exp-class
@@ -1101,6 +1197,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: Exp-class
> ### Title: Class "Exp"
> ### Aliases: Exp-class Exp initialize,Exp-method
@@ -1146,6 +1243,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("Exp-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("ExpOrGammaOrChisq-class")
> ### * ExpOrGammaOrChisq-class
@@ -1152,6 +1251,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: ExpOrGammaOrChisq-class
> ### Title: Class "ExpOrGammaOrChisq"
> ### Aliases: ExpOrGammaOrChisq-class
@@ -1163,6 +1263,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("ExpOrGammaOrChisq-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("ExpParameter-class")
> ### * ExpParameter-class
@@ -1169,6 +1271,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: ExpParameter-class
> ### Title: Class "ExpParameter"
> ### Aliases: ExpParameter-class initialize,ExpParameter-method
@@ -1183,6 +1286,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("ExpParameter-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("FParameter-class")
> ### * FParameter-class
@@ -1189,6 +1294,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: FParameter-class
> ### Title: Class "FParameter"
> ### Aliases: FParameter-class initialize,FParameter-method
@@ -1203,6 +1309,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("FParameter-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("Fd-class")
> ### * Fd-class
@@ -1209,6 +1317,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: Fd-class
> ### Title: Class "Fd"
> ### Aliases: Fd-class Fd initialize,Fd-method
@@ -1236,6 +1345,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("Fd-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("GammaParameter-class")
> ### * GammaParameter-class
@@ -1242,6 +1353,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: GammaParameter-class
> ### Title: Class "GammaParameter"
> ### Aliases: GammaParameter-class initialize,GammaParameter-method
@@ -1256,6 +1368,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("GammaParameter-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("Gammad-class")
> ### * Gammad-class
@@ -1262,6 +1376,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: Gammad-class
> ### Title: Class "Gammad"
> ### Aliases: Gammad-class Gammad initialize,Gammad-method
@@ -1285,6 +1400,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("Gammad-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("Geom-class")
> ### * Geom-class
@@ -1291,6 +1408,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: Geom-class
> ### Title: Class "Geom"
> ### Aliases: Geom-class Geom initialize,Geom-method
@@ -1325,6 +1443,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("Geom-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("Huberize-methods")
> ### * Huberize-methods
@@ -1331,6 +1451,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: Huberize-methods
> ### Title: Methods for function Huberize in Package 'distr'
> ### Aliases: Huberize-methods Huberize Huberize,AcDcLcDistribution-method
@@ -1357,6 +1478,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("Huberize-methods", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("Hyper-class")
> ### * Hyper-class
@@ -1363,6 +1486,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: Hyper-class
> ### Title: Class "Hyper"
> ### Aliases: Hyper-class Hyper initialize,Hyper-method
@@ -1386,6 +1510,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("Hyper-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("HyperParameter-class")
> ### * HyperParameter-class
@@ -1392,6 +1518,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: HyperParameter-class
> ### Title: Class "HyperParameter"
> ### Aliases: HyperParameter-class initialize,HyperParameter-method
@@ -1406,6 +1533,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("HyperParameter-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("Lattice-class")
> ### * Lattice-class
@@ -1412,6 +1541,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: Lattice-class
> ### Title: Class "Lattice"
> ### Aliases: Lattice-class Lattice
@@ -1426,6 +1556,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("Lattice-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("LatticeDistribution-class")
> ### * LatticeDistribution-class
@@ -1432,6 +1564,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: LatticeDistribution-class
> ### Title: Class "LatticeDistribution"
> ### Aliases: AffLinLatticeDistribution-class LatticeDistribution-class
@@ -1465,6 +1598,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("LatticeDistribution-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("LatticeDistribution")
> ### * LatticeDistribution
@@ -1471,6 +1606,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: LatticeDistribution
> ### Title: Class "LatticeDistribution"
> ### Aliases: LatticeDistribution
@@ -1486,6 +1622,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("LatticeDistribution", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("Lnorm-class")
> ### * Lnorm-class
@@ -1492,6 +1630,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: Lnorm-class
> ### Title: Class "Lnorm"
> ### Aliases: Lnorm-class Lnorm initialize,Lnorm-method
@@ -1515,6 +1654,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("Lnorm-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("LnormParameter-class")
> ### * LnormParameter-class
@@ -1521,6 +1662,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: LnormParameter-class
> ### Title: Class "LnormParameter"
> ### Aliases: LnormParameter-class initialize,LnormParameter-method
@@ -1535,6 +1677,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("LnormParameter-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("Logis-class")
> ### * Logis-class
@@ -1541,6 +1685,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: Logis-class
> ### Title: Class "Logis"
> ### Aliases: Logis-class Logis initialize,Logis-method
@@ -1565,6 +1710,8 @@
>
>
>
+> base::assign(".dptime", (proc.time() - get(".ptime", pos = "CheckExEnv")), pos = "CheckExEnv")
+> base::cat("Logis-class", base::get(".format_ptime", pos = 'CheckExEnv')(get(".dptime", pos = "CheckExEnv")), "\n", file=base::get(".ExTimings", pos = 'CheckExEnv'), append=TRUE, sep="\t")
> cleanEx()
> nameEx("LogisParameter-class")
> ### * LogisParameter-class
@@ -1571,6 +1718,7 @@
>
> flush(stderr()); flush(stdout())
>
+> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: LogisParameter-class
> ### Title: Class "LogisParameter"
> ### Aliases: LogisParameter-class initialize,LogisParameter-method
@@ -1585,6 +1733,8 @@
[TRUNCATED]
To get the complete diff run:
svnlook diff /svnroot/distr -r 1406
More information about the Distr-commits
mailing list