Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
bugfix logicals
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphaelS1 committed Jul 15, 2021
1 parent 44c1cae commit 04ff126
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ papers
^\.github$
^tic\.R$
^\.lintr$
.vscode
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,4 @@ tests/.DS_Store
.DS_Store
.DS_Store
docs/
.vscode
2 changes: 2 additions & 0 deletions CRAN-RELEASE
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This package was submitted to CRAN on 2021-02-17.
Once it is accepted, delete this file and tag the release (commit 44c1cae).
8 changes: 4 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: set6
Title: R6 Mathematical Sets Interface
Version: 0.2.1
Authors@R:
Version: 0.2.2
Authors@R:
c(person(given = "Raphael",
family = "Sonabend",
role = c("aut","cre"),
Expand All @@ -19,13 +19,13 @@ License: MIT + file LICENSE
LazyData: true
URL: https://xoopR.github.io/set6/, https://github.com/xoopR/set6
BugReports: https://github.com/xoopR/set6/issues
VignetteBuilder:
VignetteBuilder:
knitr
Encoding: UTF-8
RoxygenNote: 7.1.1
Roxygen: list(markdown = TRUE, r6 = TRUE)
SystemRequirements: C++11
Collate:
Collate:
'Properties.R'
'RcppExports.R'
'Set.R'
Expand Down
5 changes: 4 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# set6 0.2.2

* Fixed bug preventing `Logicals` from being deep cloned
# set6 0.2.1

* Bugfix in setcomplement (#65)
* Impossible intervals containing only one elements with type not equal to `[]` are now equal to the empty set
* Default `ConditionalSet` `condition` argument now `function(x) TRUE`
* Print method for `ConditionalSet` now omits RHS if only `"TRUE"`
* Print method for `ConditionalSet` now omits RHS if only `"TRUE"`

# set6 0.2.0

Expand Down
2 changes: 1 addition & 1 deletion R/Set_Logicals.R
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Logicals <- R6::R6Class("Logicals",
private$.properties <- Properties$new(closure = "closed", cardinality = 2)
private$.lower <- TRUE
private$.upper <- FALSE
private$.universe <- self
private$.universe <- Set$new(TRUE, FALSE)
invisible(self)
}
)
Expand Down

0 comments on commit 04ff126

Please sign in to comment.