concrete.ml.common.debugging.custom_assert.md
module concrete.ml.common.debugging.custom_assert
concrete.ml.common.debugging.custom_assert
Provide some variants of assert.
function assert_true
assert_true
Provide a custom assert to check that the condition is True.
Args:
condition
(bool): the condition. If False, raise AssertionErroron_error_msg
(str): optional message for precising the error, in case of errorerror_type
(Type[Exception]): the type of error to raise, if condition is not fulfilled. Default to AssertionError
function assert_false
assert_false
Provide a custom assert to check that the condition is False.
Args:
condition
(bool): the condition. If True, raise AssertionErroron_error_msg
(str): optional message for precising the error, in case of errorerror_type
(Type[Exception]): the type of error to raise, if condition is not fulfilled. Default to AssertionError
function assert_not_reached
assert_not_reached
Provide a custom assert to check that a piece of code is never reached.
Args:
on_error_msg
(str): message for precising the errorerror_type
(Type[Exception]): the type of error to raise, if condition is not fulfilled. Default to AssertionError
Last updated