Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add explicit definitions for abs_{real,int} #750

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/preludes/ria.ae
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,13 @@ theory Real_of_Int extends RIA =

end

(* Outside of the theories because it is ignored otherwise. *)
axiom abs_real_def :
forall x : real [ abs_real(x) ]. abs_real(x) = if 0.0 <= x then x else -x

axiom abs_int_def :
forall x : int [ abs_int(x) ]. abs_int(x) = if 0 <= x then x else -x

theory ABS extends RIA =

axiom abs_real_pos :
Expand Down
Loading