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
/// The property of monotonicity for a certain range.
struct Monotonic {
// Is the function monotonous (nondecreasing or nonincreasing).
is_monotonic: bool,
// true if the function is nondecreasing, false, if notincreasing. If is_monotonic = false, then it does not matter.
is_positive: bool,
// Is true if function is monotonic on the whole input range
is_always_monotonic: bool,
}
The text was updated successfully, but these errors were encountered:
Summary
The text was updated successfully, but these errors were encountered: