Skip to content

Commit eb02fb9

Browse files
committed
CRAN upload
1 parent cf241ef commit eb02fb9

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: validatetools
22
Title: Checking and Simplifying Validation Rule Sets
3-
Version: 0.6.0.9000
3+
Version: 0.6.1
44
Authors@R: c( person("Edwin", "de Jonge", email = "[email protected]", role = c("aut", "cre")
55
, comment=c(ORCID="0000-0002-6580-4718"))
66
, person("Mark", "van der Loo", email = "[email protected]",role = c("aut"))

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# validatetools 0.6.0
1+
# validatetools 0.6.1
22

33
* added a fix when categorical variables where used, without a rule that specified the domain. (issue #15) Thanks to
44
Romina Filippini and Simona Toti for reporting.

examples/simplify_conditional.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ rules <- validator(
55
r1 = if (x > 0) x < 1,
66
r2 = if (y > 0 && y > 1) z > 0
77
)
8-
# r1 means that x > 0 is superfluous
9-
# r2 means that y > 0 is superfluous
8+
# r1: x > 0 is superfluous because r1 equals (x <= 0) | (x < 1)
9+
# r2: y > 0 is superfluous because r2 equals (y <= 0) | (y <= 1) | (z > 0)
1010
simplify_conditional(rules)
1111

1212
# non-relaxing clause

man/simplify_conditional.Rd

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)