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
Original file line number
Diff line number
Diff line change
@@ -114,7 +114,7 @@ The crate is optimized to use a `u64` to store the truth table when the number o
114
114
When using `BooleanFunction` type, the crate will detect runtime whether to use `SmallBooleanFunction` (truth table stored as `u64`) or `BigBooleanFunction` (truth table stored as `BigUint`) depending on the number of variables.
115
115
116
116
If you already know that your function will have less than 6 variables, you can use the `SmallBooleanFunction` type directly.
117
-
So that you can avoid using polymorphism, and the runtime check to the V-table.
0 commit comments