vice.ScienceWarning =================== A ``Warning`` class designed to treat as a distinct set of warnings those related to the scientific accuracy or precision of values returned from a given function. **Signature**: vice.ScienceWarning Although it is not recommended, this class of warnings can be silenced via: >>> warnings.filterwarnings("ignore", category = vice.ScienceWarning) Alternatively, to silence all errors within VICE: >>> vice.warnings.filterwarnings("ignore") To silence all warnings globally: >>> warnings.filterwarnings("ignore")