You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,7 @@ fn main() {
69
69
```
70
70
71
71
As you can see, this library provides 3 types of Boolean functions:
72
-
-`BooleanFunction`: for Boolean functions with an arbitrary number of variables (up to 31). This is a wrapper for `Box<dyn BooleanFunctionImpl>`.
72
+
-`BooleanFunction`: for Boolean functions with an arbitrary number of variables (up to 31). This is an enum between `SmallBooleanFunction` and `BigBooleanFunction`.
73
73
-`SmallBooleanFunction`: for Boolean functions with up to 6 variables. Internally, the truth table is stored as a `u64`.
74
74
-`BigBooleanFunction`: for Boolean functions with more than 6 variables. Internally, the truth table is stored as a `BigUint`.
0 commit comments