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
/// Computes Boolean Function from string ANF representation
921
+
///
922
+
/// The ANF string representation must be in exact form "`x0*x2*x3 + x2*x3 + x1 + 1`".
923
+
///
924
+
/// X's index starts at 0, meaning the maximum index is variable count - 1.
925
+
///
926
+
/// # Parameters:
927
+
/// - `anf_polynomial`: The string representation of the ANF form
928
+
/// - `num_variables`: Variable count of the polynomial
929
+
///
930
+
/// # Returns
931
+
/// The BooleanFunction corresponding to the ANF string representation, or an error if the input string doesn't respect the format and `unsafe_disable_safety_checks` feature is not activated.
0 commit comments