Microsoft.Z3.Context.ToggleWarningMessages C# (CSharp) Méthode

ToggleWarningMessages() public static méthode

Enable/disable printing of warning messages to the console.
Note that this function is static and effects the behaviour of all contexts globally.
public static ToggleWarningMessages ( bool enabled ) : void
enabled bool
Résultat void
        public static void ToggleWarningMessages(bool enabled)
        {
            Native.Z3_toggle_warning_messages((enabled) ? 1 : 0);
        }
Context